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

7 lines
147 B
Kotlin
Vendored

package foo
class A(val x: String) {
@JsName("aa") <!JS_NAME_CLASH!>constructor(x: Int)<!> : this("int $x")
}
<!JS_NAME_CLASH!>fun aa()<!> {}