mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 11:17:26 +03:00
8 lines
166 B
Rust
8 lines
166 B
Rust
//@ run-rustfix
|
|
|
|
fn main() {
|
|
for _i in 0..2 {} //~ ERROR missing `in`
|
|
for _i in 0..2 {} //~ ERROR missing `in`
|
|
for _i in 0..2 {} //~ ERROR missing `in`
|
|
}
|