1 2 3 4 5 6 7 8 9 10 11 12
// Issue #922 // This test is specifically about spawning temporary closures. extern mod std; fn f() { } fn main() { task::spawn(|| f() ); }