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