summaryrefslogtreecommitdiffstats
path: root/src/test/ui/never_type/issue-52443.rs
blob: cebcca944af82b9ef1524ed622476f6dc393e080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 cannot convert
    //~| ERROR mutable references are not allowed in constants
    //~| ERROR cannot call non-const fn
}