]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/match-ref-mut-let-invariance.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / match / match-ref-mut-let-invariance.stderr
1 error[E0308]: mismatched types
2   --> $DIR/match-ref-mut-let-invariance.rs:21:9
3    |
4 LL |         x //~ ERROR mismatched types
5    |         ^ lifetime mismatch
6    |
7    = note: expected type `&'a mut &'a i32`
8               found type `&'a mut &'b i32`
9 note: the lifetime 'a as defined on the method body at 19:12...
10   --> $DIR/match-ref-mut-let-invariance.rs:19:12
11    |
12 LL |     fn bar<'a>(&'a mut self) -> &'a mut &'a i32 {
13    |            ^^
14 note: ...does not necessarily outlive the lifetime 'b as defined on the impl at 18:6
15   --> $DIR/match-ref-mut-let-invariance.rs:18:6
16    |
17 LL | impl<'b> S<'b> {
18    |      ^^
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0308`.