9 lines
180 B
Rust
9 lines
180 B
Rust
//ignore-msvc
|
|
use std::panic::{catch_unwind, AssertUnwindSafe};
|
|
|
|
fn main() {
|
|
let mut i = 3;
|
|
let _ = catch_unwind(AssertUnwindSafe(|| {i -= 2;} ));
|
|
println!("{}", i);
|
|
}
|