Sign in
rust
/
rust
/
d7a18fc052d1db50057d6fff023ca4bd8ec7617e
/
.
/
tests
/
ui
/
suggestions
/
for-loop-missing-in.rs
blob: 6c2092106cb2de2c4e55faf19ca28f18c95b3050 [
file
]
//@ 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`
}