Files
kotlin-fork/idea/testData/codeInsight/generate/secondaryConstructors/properties.kt.after
T
2015-10-13 20:56:52 +03:00

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