Files
kotlin-fork/js/js.translator/testData/box/native/simpleUndefined.kt
T

10 lines
188 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 488
package foo
external val c: Any? = definedExternally
fun box(): String {
if (c != null) return "fail1"
return if (c == null) "OK" else "fail2"
}