7 lines
147 B
Kotlin
Vendored
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()<!> {} |