]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/issue-52742.stderr
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / nll / issue-52742.stderr
1 error: lifetime may not live long enough
2   --> $DIR/issue-52742.rs:12:9
3    |
4 LL |     fn take_bar(&mut self, b: Bar<'_>) {
5    |                 ---------  - has type `Bar<'1>`
6    |                 |
7    |                 has type `&mut Foo<'_, '2>`
8 LL |         self.y = b.z
9    |         ^^^^^^^^^^^^ assignment requires that `'1` must outlive `'2`
10
11 error: aborting due to previous error
12