Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertSecondaryConstructorToPrimaryIntention/before.kt.template
T
2016-09-30 16:39:24 +03:00

10 lines
108 B
Plaintext

class Foo {
val z = y
val x: Int
constructor(x: Int = 4, y: Int) {
this.x = x
}
}