mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 16:26:10 +00:00
7 lines
162 B
Rust
7 lines
162 B
Rust
#![feature(used_with_arg)]
|
|
|
|
#[used(compiler, linker)] //~ ERROR malformed `used` attribute input
|
|
static mut USED_COMPILER_LINKER: [usize; 1] = [0];
|
|
|
|
fn main() {}
|