rust/tests/ui/consts/issue-102117.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-09-23 12:03:13 +00:00
error[E0310]: the parameter type `T` may not live long enough
--> $DIR/issue-102117.rs:19:26
2022-09-23 12:03:13 +00:00
|
LL | type_id: TypeId::of::<T>(),
2023-09-17 14:32:02 +00:00
| ^^^^^^^^^^^^^^^^^
| |
| the parameter type `T` must be valid for the static lifetime...
| ...so that the type `T` will meet its required lifetime bounds
2022-09-23 12:03:13 +00:00
|
2023-10-08 10:06:17 +00:00
help: consider adding an explicit lifetime bound
2022-09-23 12:03:13 +00:00
|
LL | pub fn new<T: 'static>() -> &'static Self {
| +++++++++
error[E0310]: the parameter type `T` may not live long enough
--> $DIR/issue-102117.rs:19:26
2022-09-23 12:03:13 +00:00
|
LL | type_id: TypeId::of::<T>(),
2023-09-17 14:32:02 +00:00
| ^^^^^^^^^^^^^^^^^
| |
| the parameter type `T` must be valid for the static lifetime...
| ...so that the type `T` will meet its required lifetime bounds
2022-09-23 12:03:13 +00:00
|
2023-10-04 18:34:50 +00:00
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
2023-10-08 10:06:17 +00:00
help: consider adding an explicit lifetime bound
2022-09-23 12:03:13 +00:00
|
LL | pub fn new<T: 'static>() -> &'static Self {
| +++++++++
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0310`.