Files
kotlin-fork/js/js.translator/testData/box/native/simpleUndefined.kt
T
2018-04-19 13:17:28 +03:00

11 lines
214 B
Kotlin
Vendored

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