mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 04:22:36 +00:00
13 lines
322 B
Rust
13 lines
322 B
Rust
#![allow(dead_code)]
|
|
|
|
use std::panic::UnwindSafe;
|
|
use std::cell::RefCell;
|
|
|
|
fn assert<T: UnwindSafe + ?Sized>() {}
|
|
|
|
fn main() {
|
|
assert::<&RefCell<i32>>();
|
|
//~^ ERROR the type `UnsafeCell<i32>` may contain interior mutability and a
|
|
//~| ERROR the type `UnsafeCell<isize>` may contain interior mutability and a
|
|
}
|