about summary refs log tree commit diff
path: root/tests/ui/parser/if-in-in.rs
blob: 048bc03b91a3318f41897791c50fc3b5bf6a73c8 (plain)
1
2
3
4
5
6
7
//@ run-rustfix

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