blob: 3aea020f89081220f82516a6f00d911f1a4117d9 [file] [log] [blame]
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"
}