10 lines
121 B
Kotlin
Vendored
10 lines
121 B
Kotlin
Vendored
package foo
|
|
|
|
@native
|
|
val c: Any? = noImpl
|
|
|
|
fun box(): Boolean {
|
|
if (c != null) return false
|
|
return (c == null)
|
|
}
|