// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction open class Base { constructor(a: Int, vararg b: Int) } class Foo : Base { val x = 1 constructor(a: Int, vararg b: Int) : super(a, *b) fun foo() { } fun bar() { } }