v/vlib/v/checker/tests/for_in_range_not_match_type.vv

6 lines
51 B
V

fn main() {
for i in 10..10.5 {
println(i)
}
}