Files
kotlin-fork/js/js.translator/testData/native/cases/simpleUndefined.kt
T
2015-09-18 10:14:34 +03:00

10 lines
121 B
Kotlin
Vendored

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