]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/return-ref-mut-issue-46557.stderr
Account for --remap-path-prefix in save-analysis
[rust.git] / src / test / ui / nll / return-ref-mut-issue-46557.stderr
1 error[E0597]: borrowed value does not live long enough
2   --> $DIR/return-ref-mut-issue-46557.rs:17:21
3    |
4 LL |     let ref mut x = 1234543; //~ ERROR borrowed value does not live long enough [E0597]
5    |                     ^^^^^^^ temporary value does not live long enough
6 LL |     x
7 LL | }
8    | - temporary value only lives until here
9    |
10    = note: borrowed value must be valid for the static lifetime...
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.