rust/tests/ui/issues/issue-21291.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
196 B
Rust
Raw Normal View History

// 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()
}