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

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

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

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