summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/issue-52442.rs
blob: fadcde528d86ef71058580c2b0cbd109139c084b (plain)
1
2
3
4
fn main() {
    [();  { &loop { break } as *const _ as usize } ]; //~ ERROR unimplemented expression type
    //~^ ERROR it is undefined behavior to use this value
}