rust/tests/ui/rust-2024/unsafe-attributes/in_2024_compatibility.rs
2024-06-23 19:02:14 -05:00

10 lines
215 B
Rust

#![deny(rust_2024_compatibility)]
#![feature(unsafe_attributes)]
#[no_mangle]
//~^ ERROR: unsafe attribute used without unsafe
//~| WARN this is accepted in the current edition
extern "C" fn foo() {}
fn main() {}