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