summary refs log tree commit diff
path: root/src/test/compile-fail/issue-52443.rs
blob: 21bd6252219035f947e9a010d60743c8ddc8bcce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    [(); & { loop { continue } } ]; //~ ERROR mismatched types

    [(); loop { break }]; //~ ERROR mismatched types

    [(); {while true {break}; 0}];
    //~^ WARN denote infinite loops with

    [(); { for _ in 0usize.. {}; 0}];
    //~^ ERROR `for` is not allowed in a `const`
    //~| ERROR calls in constants are limited to constant functions
    //~| ERROR mutable references are not allowed in constants
    //~| ERROR calls in constants are limited to constant functions
    //~| ERROR evaluation of constant value failed
}