main()1 fn main() {
2     for x in 0..3 {
3         x //~ ERROR mismatched types
4     }
5 }
6