summary refs log tree commit diff
path: root/src/test/ui/issues/issue-46472.stderr
blob: b1d34ff24d4b0bdbba53a84345f0a7b59412b208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error[E0597]: borrowed value does not live long enough (Ast)
  --> $DIR/issue-46472.rs:14:10
   |
LL |     &mut 4
   |          ^ temporary value does not live long enough
...
LL | }
   | - temporary value only lives until here
   |
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 13:8...
  --> $DIR/issue-46472.rs:13:8
   |
LL | fn bar<'a>() -> &'a mut u32 {
   |        ^^

error[E0515]: cannot return reference to temporary value (Mir)
  --> $DIR/issue-46472.rs:14:5
   |
LL |     &mut 4
   |     ^^^^^-
   |     |    |
   |     |    temporary value created here
   |     returns a reference to data owned by the current function

error: aborting due to 2 previous errors

Some errors occurred: E0515, E0597.
For more information about an error, try `rustc --explain E0515`.