Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-used_with_arg.rs
blob: 1c8f01bdef116b62b37e21d02f7b864aba5ff206 [
file
] [
log
] [
blame
]
#[
used
(
linker
)]
//~ ERROR `#[used(linker)]` is currently unstable
static
mut
USED_LINKER
:
[
usize
;
1
]
=
[
0
];
#[
used
(
compiler
)]
//~ ERROR `#[used(compiler)]` is currently unstable
static
mut
USED_COMPILER
:
[
usize
;
1
]
=
[
0
];
fn
main
()
{}