summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/issue-52442.rs
blob: ea24578c7dd0cfd28f6937987db69918d647e143 (plain)
1
2
3
4
5
fn main() {
    [();  { &loop { break } as *const _ as usize } ];
    //~^ ERROR casting pointers to integers in constants is unstable
    //~| ERROR evaluation of constant value failed
}