Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/independentProperty.kt.after
T

13 lines
152 B
Plaintext
Vendored

class Hello {
val x: String
constructor(x: String) {
this.x = x
this.z = x + y
}
val y = "Hello"
val z: String
}