rust/tests/ui/unsafe/unsafe-fn-used-as-value.rs
2023-01-11 09:32:08 +00:00

12 lines
244 B
Rust

// 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
}