]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-52742.stderr
Rollup merge of #93400 - ChayimFriedman2:dont-suggest-using-const-with-bounds-unused...
[rust.git] / src / test / ui / nll / issue-52742.stderr
1 error[E0312]: lifetime of reference outlives lifetime of borrowed content...
2   --> $DIR/issue-52742.rs:12:18
3    |
4 LL |         self.y = b.z
5    |                  ^^^
6    |
7 note: ...the reference is valid for the lifetime `'_` as defined here...
8   --> $DIR/issue-52742.rs:10:10
9    |
10 LL | impl Foo<'_, '_> {
11    |          ^^
12 note: ...but the borrowed content is only valid for the anonymous lifetime defined here
13   --> $DIR/issue-52742.rs:11:31
14    |
15 LL |     fn take_bar(&mut self, b: Bar<'_>) {
16    |                               ^^^^^^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0312`.