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

17 lines
202 B
Plaintext
Vendored

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