blob: 9f11de77be7e73dd9789ed987ff3c2fc8c99a50d (
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: `a` does not live long enough
--> $DIR/range-2.rs:20:5
|
17 | &a..&b
| - borrow occurs here
...
20 | };
| ^ `a` dropped here while still borrowed
21 | }
| - borrowed value needs to live until here
error: `b` does not live long enough
--> $DIR/range-2.rs:20:5
|
17 | &a..&b
| - borrow occurs here
...
20 | };
| ^ `b` dropped here while still borrowed
21 | }
| - borrowed value needs to live until here
error: aborting due to 2 previous errors
|