Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
attributes
/
used_with_multi_args.rs
blob: 1c054f792eb9900590d5c57ccf3bd56d6829f66f [
file
] [
log
] [
blame
]
#![
feature
(
used_with_arg
)]
#[
used
(
compiler
,
linker
)]
//~ ERROR malformed `used` attribute input
static
mut
USED_COMPILER_LINKER
:
[
usize
;
1
]
=
[
0
];
fn
main
()
{}