rust/src/test/ui/span/range-2.stderr
Ariel Ben-Yehuda 77f4022303 Revert "Change error count messages"
This reverts commit 5558c64f33.
2017-07-02 13:49:30 +03:00

25 lines
548 B
Plaintext

error[E0597]: `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[E0597]: `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