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