Files
kotlin/idea/testData/codeInsight/generate/secondaryConstructors/javaSupers.kt.after

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() {
}
}