mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-16 00:43:50 +00:00
7 lines
71 B
Rust
7 lines
71 B
Rust
unsafe fn f() { return; }
|
|
|
|
fn main() {
|
|
f();
|
|
//~^ ERROR E0133
|
|
}
|