Files
kotlin-fork/compiler/testData/codegen/box/casts/unitNullableCast.kt
T
2020-11-09 16:04:43 +03:00

10 lines
184 B
Kotlin
Vendored

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