]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/bound-lifetime-in-binding-only.paren.stderr
feat(rustdoc): open sidebar menu when links inside it are focused
[rust.git] / src / test / ui / associated-types / bound-lifetime-in-binding-only.paren.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-in-binding-only.rs:32:29
3    |
4 LL | fn paren<T: for<'a> Fn() -> &'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-in-binding-only.rs:37:41
9    |
10 LL | fn paren1<T>() where T: for<'a> Fn() -> &'a i32 {
11    |                                         ^^^^^^^
12
13 error[E0582]: binding for associated type `Output` references lifetime `'a`, which does not appear in the trait input types
14   --> $DIR/bound-lifetime-in-binding-only.rs:42:41
15    |
16 LL | fn paren2<T>() where for<'a> T: Fn() -> &'a i32 {
17    |                                         ^^^^^^^
18
19 error[E0582]: binding for associated type `Output` references lifetime `'a`, which does not appear in the trait input types
20   --> $DIR/bound-lifetime-in-binding-only.rs:47:35
21    |
22 LL | fn paren3(_: &dyn for<'a> Fn() -> &'a i32) {
23    |                                   ^^^^^^^
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0582`.