15043b3c6d
KT-4989: Verify error on local functions and extensions; KT-4987: NegativeArraySizeException on local extension convention function on nullable Int #KT-4991 Fixed #KT-4989 Fixed #KT-4987 Fixed
6 lines
157 B
Kotlin
6 lines
157 B
Kotlin
fun box(): String {
|
|
fun Int?.inc() = (this ?: 0) + 1
|
|
var counter: Int? = null
|
|
counter++
|
|
return if (counter == 1) "OK" else "fail: $counter"
|
|
} |