Files
kotlin-fork/js/js.translator/testData/box/nameClashes/nativeAndTopLevelFunction.kt
T
2017-01-27 01:29:15 +03:00

8 lines
115 B
Kotlin
Vendored

package test
external fun foo(ignore: dynamic): String
@JsName("foo")
fun foo() = "K"
fun box() = foo(0) + foo()