blob: 9517598c7ce57e20a2987f0bc7c92ea7ce3e2ffc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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
}
|