blob: 9517598c7ce57e20a2987f0bc7c92ea7ce3e2ffc [file] [log] [blame]
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
unsafe fn f() { return; }
fn main() {
let x = f;
x();
//[mir]~^ ERROR call to unsafe function is unsafe
//[thir]~^^ ERROR call to unsafe function `f` is unsafe
}