41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
14 lines
171 B
Kotlin
Vendored
14 lines
171 B
Kotlin
Vendored
// KT-2148
|
|
|
|
|
|
fun f(p: Int?): Int {
|
|
return when(p) {
|
|
null -> 3
|
|
else -> p!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return if (f(null) == 3) "OK" else "fail"
|
|
}
|