summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/if-in-in.fixed
blob: 0bb88c55936f0b36de75f5938944d2ccfa3a532c (plain)
1
2
3
4
5
6
7
// run-rustfix

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