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

8 lines
108 B
Kotlin
Vendored

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