Updated test with expected error message.

This commit is contained in:
David Wood 2018-03-13 14:16:14 +00:00
parent ee4c7ac154
commit c8d81b1a2e
No known key found for this signature in database
GPG key ID: 01760B4F9F53F154
2 changed files with 16 additions and 2 deletions

View file

@ -11,6 +11,6 @@
#![feature(nll)]
fn main() {
let vec: Vec<&'static String> = vec![&String::new()];
//~^ ERROR
let _vec: Vec<&'static String> = vec![&String::new()];
//~^ ERROR borrowed value does not live long enough [E0597]
}

View file

@ -0,0 +1,14 @@
error[E0597]: borrowed value does not live long enough
--> $DIR/issue-47184.rs:14:44
|
LL | let _vec: Vec<&'static String> = vec![&String::new()];
| ^^^^^^^^^^^^^ temporary value does not live long enough
LL | //~^ ERROR borrowed value does not live long enough [E0597]
LL | }
| - temporary value only lives until here
|
= note: borrowed value must be valid for the static lifetime...
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.