summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-58776-borrowck-scans-children.rs
blob: efa313a9d23f4c2ec6ae533dc923e881d6f79944 (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
}