summaryrefslogtreecommitdiffstats
path: root/src/test/ui/not-panic/not-panic-safe-2.rs
blob: f3faa7043295a94bd2edaa3875520692f235f319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(dead_code)]

use std::panic::UnwindSafe;
use std::rc::Rc;
use std::cell::RefCell;

fn assert<T: UnwindSafe + ?Sized>() {}

fn main() {
    assert::<Rc<RefCell<i32>>>();
    //~^ ERROR the type `UnsafeCell<i32>` may contain interior mutability and a
    //~| ERROR the type `UnsafeCell<isize>` may contain interior mutability and a
}