rust/tests/ui/feature-gates/feature-gate-unsafe-attributes.rs
2024-06-06 20:26:27 -05:00

9 lines
90 B
Rust

#[unsafe(no_mangle)] //~ ERROR [E0658]
extern "C" fn foo() {
}
fn main() {
foo();
}