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