rustc/tests/ui/attributes/used-issue-126789.rs
2024-10-21 11:08:01 +02:00

7 lines
121 B
Rust

extern "C" {
#[used] //~ ERROR attribute must be applied to a `static` variable
static FOO: i32;
}
fn main() {}