Files
kotlin-fork/js/js.translator/testData/box/native/simpleUndefined.kt
T
2021-11-12 18:44:47 +03:00

11 lines
213 B
Kotlin
Vendored

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