mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 20:45:45 +03:00
10 lines
232 B
Rust
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() {}
|