blob: 9a4cce97e3ee8e0bdab80f232c890bbcacf3ca29 [file] [log] [blame]
//@ run-pass
#![allow(non_upper_case_globals)]
struct TestStruct {
x: *const u8,
}
unsafe impl Sync for TestStruct {}
extern "C" fn foo() {}
const x: extern "C" fn() = foo;
static y: TestStruct = TestStruct { x: x as *const u8 };
pub fn main() {
assert_eq!(x as *const u8, y.x);
}