Files
kotlin/compiler/testData/codegen/box/casts/unitNullableCast.kt
2018-06-14 19:54:30 +03:00

8 lines
116 B
Kotlin
Vendored

fun foo() {}
fun bar(): Int? = foo() as? Int
fun box(): String {
return if (bar() == null) "OK" else "fail"
}