Files
kotlin-fork/js/js.translator/testData/box/native/simpleUndefined.kt
T
2018-09-12 09:49:25 +03:00

10 lines
189 B
Kotlin
Vendored

// 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"
}