rust/src/test/run-fail/unwind-move.rs

9 lines
91 B
Rust

// error-pattern:fail
fn f(-a: @int) {
fail;
}
fn main() {
let a = @0;
f(a);
}