]> git.lizzy.rs Git - rust.git/blob - tests/ui/regions/regions-normalize-in-where-clause-list.stderr
internally change regions to be covariant
[rust.git] / tests / ui / regions / regions-normalize-in-where-clause-list.stderr
1 error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
2   --> $DIR/regions-normalize-in-where-clause-list.rs:24:4
3    |
4 LL | fn bar<'a, 'b>()
5    |    ^^^
6    |
7 note: first, the lifetime cannot outlive the lifetime `'a` as defined here...
8   --> $DIR/regions-normalize-in-where-clause-list.rs:24:8
9    |
10 LL | fn bar<'a, 'b>()
11    |        ^^
12 note: ...but the lifetime must also be valid for the lifetime `'b` as defined here...
13   --> $DIR/regions-normalize-in-where-clause-list.rs:24:12
14    |
15 LL | fn bar<'a, 'b>()
16    |            ^^
17 note: ...so that the types are compatible
18   --> $DIR/regions-normalize-in-where-clause-list.rs:24:4
19    |
20 LL | fn bar<'a, 'b>()
21    |    ^^^
22    = note: expected `Project<'a, 'b>`
23               found `Project<'_, '_>`
24
25 error: aborting due to previous error
26
27 For more information about this error, try `rustc --explain E0495`.