blob: efa313a9d23f4c2ec6ae533dc923e881d6f79944 [file] [log] [blame]
fn main() {
let mut greeting = "Hello world!".to_string();
let res = (|| (|| &greeting)())();
greeting = "DEALLOCATED".to_string();
//~^ ERROR cannot assign
drop(greeting);
//~^ ERROR cannot move
println!("thread result: {:?}", res);
}