rustc/tests/ui/consts/const-for-feature-gate.rs
2023-08-02 10:33:26 +02:00

9 lines
128 B
Rust

// gate-test-const_for
const _: () = {
for _ in 0..5 {}
//~^ error: `for` is not allowed in a `const`
};
fn main() {}