Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/withProperties.kt
T
2016-09-30 16:39:24 +03:00

11 lines
199 B
Kotlin
Vendored

class WithProperties {
val x: Int
val y: Int
private val z: Int
constructor(x: Int, y: Int = 7, z: Int = 13<caret>) {
this.x = x
this.y = y
this.z = z
}
}