rust/tests/run-pass-fullmir/catch.rs

10 lines
192 B
Rust
Raw Normal View History

2017-05-26 19:27:39 -05:00
use std::panic::{catch_unwind, AssertUnwindSafe};
fn main() {
let mut i = 3;
let _ = catch_unwind(AssertUnwindSafe(|| {i -= 2;} ));
for _ in 0..i {
println!("I");
}
}