blob: b0ba3781f3453f04d70cd90285178808d76103b6 [file] [log] [blame]
#![allow(dead_code)]
use std::panic::UnwindSafe;
use std::sync::Arc;
use std::cell::RefCell;
fn assert<T: UnwindSafe + ?Sized>() {}
fn main() {
assert::<Arc<RefCell<i32>>>();
//~^ ERROR the type `std::cell::UnsafeCell<i32>` may contain interior mutability and a
//~| ERROR the type `std::cell::UnsafeCell<isize>` may contain interior mutability and a
}