rust/src/test/compile-fail/kindck-nonsendable-1.rs

8 lines
250 B
Rust
Raw Normal View History

fn foo(_x: @uint) {}
fn main() {
let x = @3u;
let _ = fn~() { foo(x); }; //! ERROR not a sendable value
let _ = fn~(copy x) { foo(x); }; //! ERROR not a sendable value
let _ = fn~(move x) { foo(x); }; //! ERROR not a sendable value
}