Files
kotlin-fork/js/js.translator/testData/box/nameClashes/nativeAndTopLevelFunction.kt
T
2018-09-12 09:49:25 +03:00

10 lines
174 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1282
package test
external fun foo(ignore: dynamic): String
@JsName("foo")
fun foo() = "K"
fun box() = foo(0) + foo()