6 lines
98 B
Kotlin
6 lines
98 B
Kotlin
fun box() : String {
|
|
val i : Int? = 0
|
|
val j = i?.plus(3) //verify error
|
|
return "OK"
|
|
}
|