mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
12 lines
222 B
Rust
12 lines
222 B
Rust
// gate-test-const_for
|
|
|
|
const _: () = {
|
|
for _ in 0..5 {}
|
|
//~^ error: `for` is not allowed in a `const`
|
|
//~| ERROR: cannot convert
|
|
//~| ERROR: cannot call
|
|
//~| ERROR: mutable references
|
|
};
|
|
|
|
fn main() {}
|