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

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