summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0582.stderr
blob: 81a2f004653d25d2597f2b85ddba49fa2738d2a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0582]: binding for associated type `Output` references lifetime `'a`, which does not appear in the trait input types
  --> $DIR/E0582.rs:28:30
   |
LL |     where F: for<'a> Fn() -> Option<&'a i32>
   |                              ^^^^^^^^^^^^^^^

error[E0582]: binding for associated type `Item` references lifetime `'a`, which does not appear in the trait input types
  --> $DIR/E0582.rs:36:31
   |
LL |     where F: for<'a> Iterator<Item=&'a i32>
   |                               ^^^^^^^^^^^^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0582`.