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

16 lines
271 B
Kotlin
Vendored

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