Files
kotlin-fork/compiler/visualizer/testData/rawBuilder/declarations/noPrimaryConstructor.kt
T

15 lines
257 B
Kotlin
Vendored

class NoPrimary {
// String
// │
val x: String
constructor(x: String) {
// val (NoPrimary).x: String
// │ NoPrimary.<init>.x: String
// │ │
this.x = x
}
constructor(): this("")
}