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

10 lines
110 B
Rust
Raw Normal View History

2011-09-07 20:41:57 -05:00
// error-pattern:fail
fn x(it: block(int)) {
2011-09-07 20:41:57 -05:00
let a = @0;
it(1);
2011-09-07 20:41:57 -05:00
}
fn main() {
x {|_x| fail; };
2011-09-07 20:41:57 -05:00
}