DEBSOURCES
Skip Quicknav
sources / kotlin / 1.3.31%2Bds1-3 / idea / resources / intentionDescriptions / ConvertPrimaryConstructorToSecondaryIntention / after.kt.template
123456789
class Foo { val z = y val x: Int constructor(x: Int = 4, y: Int) { this.x = x } }