Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/independentProperty2.kt.after
T
2016-09-30 16:39:13 +03:00

17 lines
210 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: String = Storage.hello
val z: String
}