DEBSOURCES
Skip Quicknav
sources / kotlin / 1.3.31%2Bds1-3 / idea / resources / intentionDescriptions / ConvertObjectLiteralToClassIntention / after.kt.template
123456789
open class K fun foo(n: Int) { val x = O(n) } class O(private val n: Int) : K() { fun bar() = n }