Files
kotlin-fork/compiler/testData/codegen/box/classes/kt725.kt
T
2019-12-11 16:54:15 +03:00

9 lines
158 B
Kotlin
Vendored

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