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

11 lines
145 B
Plaintext
Vendored

fun foo(x: Int) {
class Local {
val y: Int
constructor(y: Int) {
this.y = y
}
val z = x
}
}