]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/ty-outlives/ty-param-fn.stderr
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / nll / ty-outlives / ty-param-fn.stderr
1 error[E0309]: the parameter type `T` may not live long enough
2   --> $DIR/ty-param-fn.rs:9:5
3    |
4 LL |     x
5    |     ^ ...so that the type `T` will meet its required lifetime bounds
6    |
7 help: consider adding an explicit lifetime bound...
8    |
9 LL |     T: Debug + 'a,
10    |              ++++
11
12 error[E0309]: the parameter type `T` may not live long enough
13   --> $DIR/ty-param-fn.rs:24:5
14    |
15 LL |     x
16    |     ^ ...so that the type `T` will meet its required lifetime bounds
17    |
18 help: consider adding an explicit lifetime bound...
19    |
20 LL |     T: 'b + Debug + 'a,
21    |                   ++++
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0309`.