mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
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()<!> {} |