blob: b351e22d862d40b4fae0ce8cc815e8bd91f8e333 [file] [log] [blame]
// 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()
}