8 lines
124 B
Kotlin
Vendored
8 lines
124 B
Kotlin
Vendored
package foo
|
|
|
|
@JsModule("lib") @native val foo: Int = noImpl
|
|
|
|
fun box(): String {
|
|
assertEquals(23, foo)
|
|
return "OK"
|
|
} |