mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
196 B
Rust
11 lines
196 B
Rust
// 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()
|
|
}
|