mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
9 lines
128 B
Rust
9 lines
128 B
Rust
// gate-test-const_for
|
|
|
|
const _: () = {
|
|
for _ in 0..5 {}
|
|
//~^ error: `for` is not allowed in a `const`
|
|
};
|
|
|
|
fn main() {}
|