]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/bound-lifetime-constrained.object.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / associated-types / bound-lifetime-constrained.object.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:56
3    |
4 LL | fn object1(_: Box<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:35
9    |
10 LL | fn object2(_: Box<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`.