b107bc401c
#KT-12175 Fixed
15 lines
272 B
Plaintext
Vendored
15 lines
272 B
Plaintext
Vendored
// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction
|
|
class Foo : Base {
|
|
val x = 1
|
|
|
|
<caret>constructor(n: Int) : super(n)
|
|
constructor(a: Int, b: Int) : super(a, b)
|
|
|
|
fun foo() {
|
|
|
|
}
|
|
|
|
fun bar() {
|
|
|
|
}
|
|
} |