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

11 lines
122 B
Rust
Raw Normal View History

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