blob: c704acc22af6b449b55e7e59a432d8a00764809b (
plain)
1
2
3
4
5
6
7
|
use std::cell::Cell;
use std::panic::catch_unwind;
fn main() {
let mut x = Cell::new(22);
catch_unwind(|| { x.set(23); });
//~^ ERROR the type `UnsafeCell<i32>` may contain interior mutability and a
}
|