summary refs log tree commit diff
path: root/src/test/run-fail/task-spawn-barefn.rs
blob: 497c5ea71804fc755078035829a1432b8ad6eeb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// error-pattern:Ensure that the child thread runs by panicking
// ignore-emscripten Needs threads.

use std::thread;

fn main() {
    // the purpose of this test is to make sure that thread::spawn()
    // works when provided with a bare function:
    let r = thread::spawn(startfn).join();
    if r.is_err() {
        panic!()
    }
}

fn startfn() {
    assert!("Ensure that the child thread runs by panicking".is_empty());
}