rust/tests/ui/consts/const-for-feature-gate.rs

10 lines
142 B
Rust
Raw Permalink Normal View History

// gate-test-const_for
const _: () = {
for _ in 0..5 {}
2024-11-22 02:31:42 +00:00
//~^ ERROR cannot use `for`
//~| ERROR cannot use `for`
};
fn main() {}