30d697109c
#KT-6970 Fixed
18 lines
305 B
Plaintext
Vendored
18 lines
305 B
Plaintext
Vendored
// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction
|
|
open class Base {
|
|
constructor(a: Int, vararg b: Int)
|
|
}
|
|
|
|
class Foo : Base {
|
|
val x = 1
|
|
|
|
<caret>constructor(a: Int, vararg b: Int) : super(a, *b)
|
|
|
|
fun foo() {
|
|
|
|
}
|
|
|
|
fun bar() {
|
|
|
|
}
|
|
} |