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