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