summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/used_with_arg_no_mangle.rs
blob: d0bbe76ef3e570a222485efae4caa8cacd1424d8 (plain)
1
2
3
4
5
6
7
8
9
// check-pass

#![feature(used_with_arg)]

#[used(linker)]
#[no_mangle] // accidentally detected as `used(compiler)`
pub static GLOB: usize = 0;

fn main() {}