summary refs log tree commit diff
path: root/src/test/ui/span/issue-15480.stderr
blob: 1d239c712fe964334be58aa3ad7e4225d1a39316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0597]: borrowed value does not live long enough
  --> $DIR/issue-15480.rs:15:10
   |
LL |         &id(3)
   |          ^^^^^ temporary value does not live long enough
LL |     ];
   |      - temporary value dropped here while still borrowed
...
LL | }
   | - temporary value needs to live until here
   |
   = note: consider using a `let` binding to increase its lifetime

error: aborting due to previous error

For more information about this error, try `rustc --explain E0597`.