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