summary refs log tree commit diff
path: root/src/test/ui/issues/issue-52023-array-size-pointer-cast.rs
blob: cc756ce815f15c19af1038930ce2a002911d2fbb (plain)
1
2
3
fn main() {
    let _ = [0; (&0 as *const i32) as usize]; //~ ERROR casting pointers to integers in constants
}