blob: 372082652669746a51f83fafbcbd4563fca6359d [file] [log] [blame]
//@ run-pass
#![allow(unused_must_use)]
//@ needs-threads
// Issue #922
// This test is specifically about spawning temporary closures.
use std::thread;
fn f() {}
pub fn main() {
thread::spawn(move || f()).join();
}