Files
kotlin-fork/js/js.translator/testData/native/cases/simpleUndefined.kt
T
2014-03-11 20:04:00 +04:00

11 lines
135 B
Kotlin

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