]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/if-in-in.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[rust.git] / tests / ui / parser / if-in-in.rs
1 // run-rustfix
2
3 fn main() {
4     for i in in 1..2 { //~ ERROR expected iterable, found keyword `in`
5         println!("{}", i);
6     }
7 }