Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
attributes
/
unsafe
/
unsafe-attributes.rs
blob: 5c57767b3b964e5a411335ca1d49800e9fbc8a5d [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass
#[
unsafe
(
no_mangle
)]
fn
a
()
{}
#[
unsafe
(
export_name
=
"foo"
)]
fn
b
()
{}
#[
cfg_attr
(
any
(),
unsafe
(
no_mangle
))]
static
VAR2
:
u32
=
1
;
fn
main
()
{}