mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
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() {
|
|
|
|
}
|
|
} |