mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
11 lines
229 B
Rust
11 lines
229 B
Rust
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
unsafe fn f() { return; }
|
|
|
|
fn main() {
|
|
f();
|
|
//[mir]~^ ERROR call to unsafe function is unsafe
|
|
//[thir]~^^ ERROR call to unsafe function `f` is unsafe
|
|
}
|