mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
9 lines
158 B
Kotlin
Vendored
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"
|
|
}
|