about summary refs log tree commit diff
path: root/tests/ui/consts/const-for-feature-gate.rs
blob: b643e63c096907b157dc6135e6d50dd09339a246 (plain)
1
2
3
4
5
6
7
8
9
// gate-test-const_for

const _: () = {
    for _ in 0..5 {}
    //~^ ERROR cannot use `for`
    //~| ERROR cannot use `for`
};

fn main() {}