]> git.lizzy.rs Git - rust.git/blob - tests/ui/attributes/used_with_arg_no_mangle.rs
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / ui / attributes / used_with_arg_no_mangle.rs
1 // check-pass
2
3 #![feature(used_with_arg)]
4
5 #[used(linker)]
6 #[no_mangle] // accidentally detected as `used(compiler)`
7 pub static GLOB: usize = 0;
8
9 fn main() {}