3cffb33ab7
This feature is not needed because it is unconditionally disabled for K1 (because of not fully correct implementation) and unconditionally enabled in K2 (K2 does not support old behavior) ^KT-38895
8 lines
101 B
Kotlin
Vendored
8 lines
101 B
Kotlin
Vendored
fun test(): Int {
|
|
var res = 0
|
|
for (x in 100 ..< 1) {
|
|
res += x
|
|
}
|
|
return res
|
|
}
|