7 lines
153 B
Rust
7 lines
153 B
Rust
#![feature(nll)]
|
|
|
|
fn main() {
|
|
let _vec: Vec<&'static String> = vec![&String::new()];
|
|
//~^ ERROR temporary value dropped while borrowed [E0716]
|
|
}
|