Files
kotlin-fork/js/js.translator/testData/box/native/simpleUndefined.kt
T
2016-09-29 12:00:42 +03:00

10 lines
143 B
Kotlin
Vendored

package foo
@native
val c: Any? = noImpl
fun box(): String {
if (c != null) return "fail1"
return if (c == null) "OK" else "fail2"
}