6bb939c6cb
^KT-59425 Fixed ^KT-59370 Fixed
9 lines
165 B
Kotlin
Vendored
9 lines
165 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package foo
|
|
|
|
class A(val x: String) {
|
|
@JsName("aa") <!JS_NAME_CLASH!>constructor(x: Int)<!> : this("int $x")
|
|
}
|
|
|
|
<!JS_NAME_CLASH!>fun aa()<!> {}
|