rustc/tests/ui/parser/if-in-in.fixed
2023-08-02 10:33:26 +02:00

8 lines
131 B
Plaintext

// run-rustfix
fn main() {
for i in 1..2 { //~ ERROR expected iterable, found keyword `in`
println!("{}", i);
}
}