// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction open class Base(n: X) { constructor(x: X, y: Y): this(x) } class Foo : Base { val x = 1 fun foo() { } fun bar() { } }