summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-21291.rs
blob: b351e22d862d40b4fae0ce8cc815e8bd91f8e333 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
// ignore-emscripten no threads support

// Regression test for unwrapping the result of `join`, issue #21291

use std::thread;

fn main() {
    thread::spawn(|| {}).join().unwrap()
}