rustc/tests/ui/parser/if-in-in.fixed
2024-06-21 09:39:33 +02:00

8 lines
132 B
Plaintext

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