Files
kotlin-fork/idea/testData/intentions/joinDeclarationAndAssignment/singleConstructor.kt.after
T
2019-09-27 09:16:52 +03:00

10 lines
120 B
Plaintext
Vendored

class A {
constructor() {
foo()
}
val a<selection>: Int</selection><caret> = 1
fun foo() {}
}