rust/src/test/compile-fail/spawn-non-nil-fn.rs

9 lines
134 B
Rust
Raw Normal View History

2010-06-23 21:03:09 -07:00
// error-pattern: mismatched types
use std;
import std::task;
fn# f(&&x: int) -> int { ret x; }
2010-06-23 21:03:09 -07:00
fn main() { task::spawn2(10, f); }