blob: 93a8506ab181f3553cd7fb45dc771d782918e810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![allow(dead_code)]
#![feature(recover)]
use std::panic::UnwindSafe;
fn assert<T: UnwindSafe + ?Sized>() {}
fn main() {
assert::<&mut i32>();
//~^ ERROR the type `&mut i32` may not be safely transferred across an unwind boundary
}
|