about summary refs log tree commit diff
path: root/tests/ui/extern/issue-28324.rs
blob: 4af400d823bb1efe0624e225b56b277499773ca0 (plain)
1
2
3
4
5
6
7
8
9
extern "C" {
    static error_message_count: u32;
}

pub static BAZ: u32 = *&error_message_count;
//~^ ERROR use of extern static is unsafe and requires
//~| ERROR cannot access extern static

fn main() {}