Files
kotlin-fork/compiler/testData/codegen/box/classes/kt725.kt
T
2021-08-01 22:23:40 +03:00

9 lines
151 B
Kotlin
Vendored

operator fun Int?.inc() = this!!.inc()
fun box() : String {
var i : Int? = 10
val j = i++
return if(j==10 && 11 == i) "OK" else "fail"
}