Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
if-in-in.rs
blob: 048bc03b91a3318f41897791c50fc3b5bf6a73c8 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn
main
()
{
for
i in in
1.
.
2
{
//~ ERROR expected iterable, found keyword `in`
println
!(
"{}"
,
i
);
}
}