11 lines
135 B
Kotlin
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)
|
|
} |