10 lines
143 B
Kotlin
Vendored
10 lines
143 B
Kotlin
Vendored
package foo
|
|
|
|
|
|
fun box(): String {
|
|
val a: Int? = 0
|
|
|
|
val result = (a!! + 3)
|
|
if (result != 3) return "fail: $result"
|
|
return "OK"
|
|
} |