]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/normalization-bounds-error.stderr
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / nll / normalization-bounds-error.stderr
1 error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'d` due to conflicting requirements
2   --> $DIR/normalization-bounds-error.rs:12:31
3    |
4 LL | fn visit_seq<'d, 'a: 'd>() -> <&'a () as Visitor<'d>>::Value {}
5    |                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7 note: first, the lifetime cannot outlive the lifetime `'d` as defined here...
8   --> $DIR/normalization-bounds-error.rs:12:14
9    |
10 LL | fn visit_seq<'d, 'a: 'd>() -> <&'a () as Visitor<'d>>::Value {}
11    |              ^^
12 note: ...but the lifetime must also be valid for the lifetime `'a` as defined here...
13   --> $DIR/normalization-bounds-error.rs:12:18
14    |
15 LL | fn visit_seq<'d, 'a: 'd>() -> <&'a () as Visitor<'d>>::Value {}
16    |                  ^^
17 note: ...so that the types are compatible
18   --> $DIR/normalization-bounds-error.rs:12:31
19    |
20 LL | fn visit_seq<'d, 'a: 'd>() -> <&'a () as Visitor<'d>>::Value {}
21    |                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22    = note: expected `Visitor<'d>`
23               found `Visitor<'_>`
24
25 error: aborting due to previous error
26
27 For more information about this error, try `rustc --explain E0495`.