blob: f5f987c823f731f463c7251fc2b777e8262102a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0597]: borrowed value does not live long enough
--> $DIR/issue-15480.rs:14:6
|
13 | &3
| - temporary value created here
14 | ];
| ^ temporary value dropped here while still borrowed
...
19 | }
| - temporary value needs to live until here
|
= note: consider using a `let` binding to increase its lifetime
error: aborting due to previous error(s)
|