about summary refs log tree commit diff
path: root/tests/ui/closures/issue-52437.rs
blob: 98b04d179af678ff0d59bf674b51850e5328590f (plain)
1
2
3
4
5
fn main() {
    [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
    //~^ ERROR: labels cannot use keyword names
    //~| ERROR: type annotations needed
}