about summary refs log tree commit diff
path: root/tests/ui/lint/test-allow-dead-extern-static-no-warning.rs
blob: 12d92ad2ec687ad6a560c532e9d18da646123fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-pass
//@ compile-flags: --test

#![deny(dead_code)]

extern "C" {
    #[allow(dead_code)]
    static Qt: u64;
}

fn main() {}