blob: 106a8a7667fb420aecd74d1522c42046df7ae264 (
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
|
error[E0597]: `a` does not live long enough
--> $DIR/range-2.rs:17:10
|
17 | &a..&b
| ^ borrowed value does not live long enough
18 | };
| - `a` dropped here while still borrowed
...
21 | }
| - borrowed value needs to live until here
error[E0597]: `b` does not live long enough
--> $DIR/range-2.rs:17:14
|
17 | &a..&b
| ^ borrowed value does not live long enough
18 | };
| - `b` dropped here while still borrowed
...
21 | }
| - borrowed value needs to live until here
error: aborting due to 2 previous errors
|