30d697109c
#KT-6970 Fixed
21 lines
294 B
Plaintext
Vendored
21 lines
294 B
Plaintext
Vendored
// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction
|
|
class Foo {
|
|
val n: Int
|
|
|
|
val x = 1
|
|
|
|
val m: Int
|
|
|
|
<caret>constructor(n: Int, m: Int) {
|
|
this.n = n
|
|
this.m = m
|
|
}
|
|
|
|
fun foo() {
|
|
|
|
}
|
|
|
|
fun bar() {
|
|
|
|
}
|
|
} |