]> git.proxmox.com Git - rustc.git/blame - src/test/ui/match/match-ref-mut-invariance.nll.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / match / match-ref-mut-invariance.nll.stderr
CommitLineData
48663c56
XL
1error: lifetime may not live long enough
2 --> $DIR/match-ref-mut-invariance.rs:10:9
3 |
4LL | impl<'b> S<'b> {
5 | -- lifetime `'b` defined here
6LL | fn bar<'a>(&'a mut self) -> &'a mut &'a i32 {
7 | -- lifetime `'a` defined here
8LL | match self.0 { ref mut x => x }
9 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'a` must outlive `'b`
60c5eb7d
XL
10 |
11 = help: consider adding the following bound: `'a: 'b`
48663c56
XL
12
13error: aborting due to previous error
14