Files
rust/tests/ui/attributes/used_with_multi_args.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
162 B
Rust
Raw Normal View History

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