Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/fromBuilder/noPrimaryConstructor.kt
T
2020-03-19 09:51:01 +03:00

9 lines
121 B
Kotlin
Vendored

class NoPrimary {
val x: String
constructor(x: String) {
this.x = x
}
constructor(): this("")
}