10 lines
149 B
Kotlin
Vendored
10 lines
149 B
Kotlin
Vendored
package foo
|
|
|
|
@JsModule("lib")
|
|
@JsNonModule
|
|
@native fun foo(y: Int): Int = noImpl
|
|
|
|
fun box(): String {
|
|
assertEquals(65, foo(42))
|
|
return "OK"
|
|
} |