Sign in
rust
/
rust
/
da2bbfbbec6373e9fde803c9f62eaec2cf6df72c
/
.
/
tests
/
ui
/
parser
/
if-in-in.fixed
blob: 566efbdf9f0a366d806bd620fa067fb7c7559f8f [
file
]
//@ run-rustfix
fn main
()
{
for
i
in
1.
.
2
{
//~ ERROR expected iterable, found keyword `in`
println
!(
"{}"
,
i
);
}
}