rust/src/test/ui/not-panic/not-panic-safe-3.rs

14 lines
368 B
Rust
Raw Normal View History

#![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
2018-06-27 02:07:18 -05:00
//~| ERROR the type `std::cell::UnsafeCell<isize>` may contain interior mutability and a
}