]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-46471.stderr
Auto merge of #59987 - saleemjaffer:refactor_adjust_castkinds, r=oli-obk
[rust.git] / src / test / ui / issues / issue-46471.stderr
1 error[E0597]: `x` does not live long enough (Ast)
2   --> $DIR/issue-46471.rs:5:6
3    |
4 LL |     &x
5    |      ^ borrowed value does not live long enough
6 ...
7 LL | }
8    | - borrowed value only lives until here
9    |
10    = note: borrowed value must be valid for the static lifetime...
11
12 error[E0515]: cannot return reference to local variable `x` (Mir)
13   --> $DIR/issue-46471.rs:5:5
14    |
15 LL |     &x
16    |     ^^ returns a reference to data owned by the current function
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0515, E0597.
21 For more information about an error, try `rustc --explain E0515`.