41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
9 lines
149 B
Kotlin
9 lines
149 B
Kotlin
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"
|
|
}
|