Files
rust/tests/ui/consts/const-for.rs
T
2026-02-06 19:38:43 +00:00

10 lines
232 B
Rust

#![feature(const_for)]
const _: () = {
for _ in 0..5 {}
//~^ ERROR `std::ops::Range<{integer}>: const Iterator` is not satisfied
//~| ERROR `std::ops::Range<{integer}>: const Iterator` is not satisfied
};
fn main() {}