]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/bound-lifetime-constrained.clause.stderr
Merge commit '4f3ab69ea0a0908260944443c739426cc384ae1a' into clippyup
[rust.git] / src / test / ui / associated-types / bound-lifetime-constrained.clause.stderr
1 error[E0582]: binding for associated type `Output` references lifetime `'a`, which does not appear in the trait input types
2   --> $DIR/bound-lifetime-constrained.rs:38:63
3    |
4 LL | fn clause1<T>() where T: for<'a> Fn(<() as Foo<'a>>::Item) -> &'a i32 {
5    |                                                               ^^^^^^^
6
7 error[E0582]: binding for associated type `Output` references lifetime `'a`, which does not appear in the trait input types
8   --> $DIR/bound-lifetime-constrained.rs:43:42
9    |
10 LL | fn clause2<T>() where T: 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 E0582`.