]> git.lizzy.rs Git - rust.git/blob - tests/ui/generic-associated-types/issue-101020.stderr
internally change regions to be covariant
[rust.git] / tests / ui / generic-associated-types / issue-101020.stderr
1 error[E0277]: the trait bound `for<'a> &'a mut (): Foo<&'a mut ()>` is not satisfied
2   --> $DIR/issue-101020.rs:31:22
3    |
4 LL |     (&mut EmptyIter).consume(());
5    |                      ^^^^^^^ the trait `for<'a> Foo<&'a mut ()>` is not implemented for `&'a mut ()`
6    |
7 note: required for `&'a mut ()` to implement `for<'a> FuncInput<'a, &'a mut ()>`
8   --> $DIR/issue-101020.rs:27:20
9    |
10 LL | impl<'a, T, F: 'a> FuncInput<'a, F> for T where F: Foo<T> {}
11    |                    ^^^^^^^^^^^^^^^^     ^          ------ unsatisfied trait bound introduced here
12 note: required by a bound in `LendingIterator::consume`
13   --> $DIR/issue-101020.rs:9:33
14    |
15 LL |     fn consume<F>(self, _f: F)
16    |        ------- required by a bound in this
17 ...
18 LL |         for<'a> Self::Item<'a>: FuncInput<'a, Self::Item<'a>>,
19    |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `LendingIterator::consume`
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0277`.