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

7 lines
77 B
Rust
Raw Normal View History

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