about summary refs log tree commit diff
path: root/tests/ui/suggestions/for-loop-missing-in.rs
blob: 6c2092106cb2de2c4e55faf19ca28f18c95b3050 (plain)
1
2
3
4
5
6
7
//@ run-rustfix

fn main() {
    for _i 0..2 {} //~ ERROR missing `in`
    for _i of 0..2 {} //~ ERROR missing `in`
    for _i = 0..2 {} //~ ERROR missing `in`
}