]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/ty-outlives/projection-implied-bounds.stderr
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / nll / ty-outlives / projection-implied-bounds.stderr
1 error[E0310]: the parameter type `T` may not live long enough
2   --> $DIR/projection-implied-bounds.rs:30:36
3    |
4 LL |     twice(value, |value_ref, item| invoke2(value_ref, item));
5    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
6    |
7 help: consider adding an explicit lifetime bound...
8    |
9 LL | fn generic2<T: Iterator + 'static>(value: T) {
10    |                         +++++++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0310`.