DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / consts / const-for.rs
123456789
#![feature(const_for)] const _: () = { for _ in 0..5 {} //~^ ERROR cannot use `for` //~| ERROR cannot use `for` }; fn main() {}