Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/jsNameClash.fir.kt
T
2023-01-09 08:57:08 +00:00

6 lines
75 B
Kotlin
Vendored

package foo
@JsName("x") fun foo(x: Int) = x
@JsName("x") fun bar() = 42