mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
10 lines
142 B
Rust
10 lines
142 B
Rust
// gate-test-const_for
|
|
|
|
const _: () = {
|
|
for _ in 0..5 {}
|
|
//~^ ERROR cannot use `for`
|
|
//~| ERROR cannot use `for`
|
|
};
|
|
|
|
fn main() {}
|