8 lines
86 B
Kotlin
8 lines
86 B
Kotlin
package foo
|
|
|
|
|
|
fun box(): Boolean {
|
|
val a: Int? = null
|
|
|
|
return (a!! + 3) == 3
|
|
} |