summary refs log tree commit diff
path: root/src/test/ui/consts/const-cast.rs
blob: 0d8609e334ac160111f42510cd3736a8154eeae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
#![allow(non_upper_case_globals)]

struct TestStruct {
    x: *const u8,
}

unsafe impl Sync for TestStruct {}

extern 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);
}