about summary refs log tree commit diff
path: root/tests/ui/attributes/used_with_multi_args.rs
blob: 1c054f792eb9900590d5c57ccf3bd56d6829f66f (plain)
1
2
3
4
5
6
#![feature(used_with_arg)]

#[used(compiler, linker)] //~ ERROR malformed `used` attribute input
static mut USED_COMPILER_LINKER: [usize; 1] = [0];

fn main() {}