about summary refs log tree commit diff
path: root/tests/ui/foreign/foreign-mod-unused-const.rs
blob: 4e40f92fdd4155795a551a1b3ea2f1082c8e79a3 (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
#![allow(dead_code)]

mod foo {
    extern "C" {
        pub static errno: u32;
    }
}

pub fn main() {}