mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
158 B
Kotlin
11 lines
158 B
Kotlin
fun f(p: Int?): Int {
|
|
return when(p) {
|
|
null -> 3
|
|
else -> p!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return if (f(null) == 3) "OK" else "fail"
|
|
}
|