blob: 302433fef59744c3c217f0423d102d6c17c7cb5b [file]
fun test(): Int {
var res = 0
for (x in 100 ..< 1) {
res += x
}
return res
}