Sign in
rust
/
rust-lang
/
rust
/
refs/heads/auto
/
.
/
tests
/
ui
/
rust-2024
/
unsafe-attributes
/
in_2024_compatibility.rs
blob: f9bff43315137f57422b735ac73dce586f5963fc [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2015
#![
deny
(
rust_2024_compatibility
)]
#[
no_mangle
]
//~^ ERROR: unsafe attribute used without unsafe
//~| WARN this is accepted in the current edition
extern
"C"
fn
foo
()
{}
fn
main
()
{}