rust/src/test/run-fail/unwind-nested.rs
2011-09-11 17:31:39 -07:00

11 lines
122 B
Rust

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