Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
attributes
/
used_with_arg_no_mangle.rs
blob: d0bbe76ef3e570a222485efae4caa8cacd1424d8 [
file
] [
log
] [
blame
]
// check-pass
#![
feature
(
used_with_arg
)]
#[
used
(
linker
)]
#[
no_mangle
]
// accidentally detected as `used(compiler)`
pub
static
GLOB
:
usize
=
0
;
fn
main
()
{}