summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-cast-ptr-int.rs
blob: 987d9616e9152dac523112811190709f25c444b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
#![allow(non_upper_case_globals)]

use std::ptr;

struct TestStruct {
    x: *const u8
}

unsafe impl Sync for TestStruct {}

static a: TestStruct = TestStruct{x: 0 as *const u8};

pub fn main() {
    assert_eq!(a.x, ptr::null());
}