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