8 lines
115 B
Kotlin
Vendored
8 lines
115 B
Kotlin
Vendored
package test
|
|
|
|
external fun foo(ignore: dynamic): String
|
|
|
|
@JsName("foo")
|
|
fun foo() = "K"
|
|
|
|
fun box() = foo(0) + foo() |