Files
kotlin-fork/js/js.translator/testData/native/cases/simpleUndefined.kt
T
2014-09-16 19:34:57 +04:00

10 lines
120 B
Kotlin

package foo
native
val c: Any? = noImpl
fun box(): Boolean {
if (c != null) return false
return (c == null)
}