]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/issue-102117.stderr
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / ui / consts / issue-102117.stderr
1 error[E0310]: the parameter type `T` may not live long enough
2   --> $DIR/issue-102117.rs:19:26
3    |
4 LL |                 type_id: TypeId::of::<T>(),
5    |                          ^^^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
6    |
7 help: consider adding an explicit lifetime bound...
8    |
9 LL |     pub fn new<T: 'static>() -> &'static Self {
10    |                 +++++++++
11
12 error[E0310]: the parameter type `T` may not live long enough
13   --> $DIR/issue-102117.rs:19:26
14    |
15 LL |                 type_id: TypeId::of::<T>(),
16    |                          ^^^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
17    |
18 help: consider adding an explicit lifetime bound...
19    |
20 LL |     pub fn new<T: 'static>() -> &'static Self {
21    |                 +++++++++
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0310`.