summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-for.rs
blob: 58bcb5f74ccf6254f2e9f538ea35e3a46e94ba12 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(const_for)]
#![feature(const_mut_refs)]

const _: () = {
    for _ in 0..5 {}
    //~^ error: cannot convert
    //~| error: cannot call non-const fn
};

fn main() {}