1error[E0582]: binding for associated type `Item` references lifetime `'a`, which does not appear in the trait input types
2  --> $DIR/bound-lifetime-in-binding-only.rs:12:25
3   |
4LL | fn angle<T: for<'a> Foo<Item=&'a i32>>() {
5   |                         ^^^^^^^^^^^^
6
7error[E0582]: binding for associated type `Item` references lifetime `'a`, which does not appear in the trait input types
8  --> $DIR/bound-lifetime-in-binding-only.rs:17:37
9   |
10LL | fn angle1<T>() where T: for<'a> Foo<Item=&'a i32> {
11   |                                     ^^^^^^^^^^^^
12
13error[E0582]: binding for associated type `Item` references lifetime `'a`, which does not appear in the trait input types
14  --> $DIR/bound-lifetime-in-binding-only.rs:22:37
15   |
16LL | fn angle2<T>() where for<'a> T: Foo<Item=&'a i32> {
17   |                                     ^^^^^^^^^^^^
18
19error[E0582]: binding for associated type `Item` references lifetime `'a`, which does not appear in the trait input types
20  --> $DIR/bound-lifetime-in-binding-only.rs:27:31
21   |
22LL | fn angle3(_: &dyn for<'a> Foo<Item=&'a i32>) {
23   |                               ^^^^^^^^^^^^
24
25error: aborting due to 4 previous errors
26
27For more information about this error, try `rustc --explain E0582`.
28