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

9 lines
127 B
Rust
Raw Normal View History

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