blob: ed2760576d83cf0a14d8d43560bd0a73d84e97b5 [file] [log] [blame]
#![allow(dead_code)]
use std::panic::UnwindSafe;
use std::cell::RefCell;
fn assert<T: UnwindSafe + ?Sized>() {}
fn main() {
assert::<&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
}