Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
attributes
/
unsafe
/
unsafe-attributes.rs
blob: c08b0ed995e525eef76dcca46f84e7f1fb3e248a [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass
#[
unsafe
(
no_mangle
)]
fn
a
()
{}
#[
unsafe
(
export_name
=
"foo"
)]
fn
b
()
{}
#[
cfg_attr
(
false
,
unsafe
(
no_mangle
))]
static
VAR2
:
u32
=
1
;
fn
main
()
{}