]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/bound-lifetime-in-binding-only.angle.stderr
Rollup merge of #76468 - SNCPlay42:lifetime-names, r=Mark-Simulacrum
[rust.git] / src / test / ui / associated-types / bound-lifetime-in-binding-only.angle.stderr
1 error[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    |
4 LL | fn angle<T: for<'a> Foo<Item=&'a i32>>() {
5    |                         ^^^^^^^^^^^^
6
7 error[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    |
10 LL | fn angle1<T>() where T: for<'a> Foo<Item=&'a i32> {
11    |                                     ^^^^^^^^^^^^
12
13 error[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    |
16 LL | fn angle2<T>() where for<'a> T: Foo<Item=&'a i32> {
17    |                                     ^^^^^^^^^^^^
18
19 error[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    |
22 LL | fn angle3(_: &dyn for<'a> Foo<Item=&'a i32>) {
23    |                               ^^^^^^^^^^^^
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0582`.