rust/tests/ui/parser/unsafe-foreign-mod-2.rs

7 lines
109 B
Rust
Raw Permalink Normal View History

extern "C" unsafe {
2024-04-24 22:10:14 +00:00
//~^ ERROR expected `{`, found keyword `unsafe`
unsafe fn foo();
}
fn main() {}