mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
9e35684072
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
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() {}
|