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