rust/tests/ui/consts/const-for-feature-gate.rs
2024-11-22 02:32:26 +00:00

10 lines
142 B
Rust

// gate-test-const_for
const _: () = {
for _ in 0..5 {}
//~^ ERROR cannot use `for`
//~| ERROR cannot use `for`
};
fn main() {}