blob: 73e8cd6ab0da1f7208228edd9e0f13b8f0806727 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![allow(safe_extern_statics)]
extern {
static error_message_count: u32;
}
pub static BAZ: u32 = *&error_message_count;
//~^ ERROR could not evaluate static initializer
//~| tried to read from foreign (extern) static
fn main() {}
|