summaryrefslogtreecommitdiffstats
path: root/tests/ui/moves/moves-based-on-type-capture-clause.rs
blob: 4a6a4ed281d4206ebbf23df1421582ee73a1464d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
#![allow(unused_must_use)]
// ignore-emscripten no threads support

use std::thread;

pub fn main() {
    let x = "Hello world!".to_string();
    thread::spawn(move|| {
        println!("{}", x);
    }).join();
}