DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg2-3 / 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() {}