Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/jsNameClash.kt
T

5 lines
114 B
Kotlin
Vendored

package foo
<!JS_NAME_CLASH!>@JsName("x") fun foo(x: Int)<!> = x
<!JS_NAME_CLASH!>@JsName("x") fun bar()<!> = 42