blob: 73e8cd6ab0da1f7208228edd9e0f13b8f0806727 [file] [log] [blame]
#![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() {}