Files
kotlin-fork/js/js.translator/testFiles/native/cases/simpleUndefined.kt
T
2012-06-15 18:19:08 +04:00

11 lines
131 B
Kotlin

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