1 2 3 4 5
fn main() { for i in in 1..2 { //~ ERROR expected iterable, found keyword `in` println!("{}", i); } }