10 lines
143 B
Kotlin
Vendored
10 lines
143 B
Kotlin
Vendored
package foo
|
|
|
|
@native
|
|
val c: Any? = noImpl
|
|
|
|
fun box(): String {
|
|
if (c != null) return "fail1"
|
|
return if (c == null) "OK" else "fail2"
|
|
}
|