Files
kotlin-fork/js/js.translator/testData/box/jsModule/externalFunctionPlain.kt
T

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"
}