]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/bound-lifetime-constrained.func.stderr
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / associated-types / bound-lifetime-constrained.func.stderr
1 error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
2   --> $DIR/bound-lifetime-constrained.rs:16:50
3    |
4 LL | fn func1(_: for<'a> fn(<() as Foo<'a>>::Item) -> &'a i32) {
5    |                                                  ^^^^^^^
6
7 error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
8   --> $DIR/bound-lifetime-constrained.rs:23:29
9    |
10 LL | fn func2(_: for<'a> fn() -> <() as Foo<'a>>::Item) {
11    |                             ^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0581`.