Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/fromBuilder/noPrimaryConstructor.kt
T
2020-12-16 19:52:30 +03:00

10 lines
122 B
Kotlin
Vendored

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