Files
kotlin-fork/compiler/testData/codegen/regressions/kt752.jet
T
2011-12-20 22:56:13 +04:00

12 lines
237 B
Plaintext

package demo_range
fun Int?.rangeTo(other : Int?) : IntRange = this.sure().rangeTo(other.sure())
fun box() : String {
val x : Int? = 10
val y : Int? = 12
for (i in x..y)
System.out?.println(i.inv())
return "OK"
}