1
Fork 0
rust/tests/ui/attributes/used_with_multi_args.rs
2025-04-08 23:06:31 +03:00

6 lines
181 B
Rust

#![feature(used_with_arg)]
#[used(compiler, linker)] //~ ERROR expected `used`, `used(compiler)` or `used(linker)`
static mut USED_COMPILER_LINKER: [usize; 1] = [0];
fn main() {}