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

6 lines
132 B
Plaintext
Vendored

// DISABLE-ERRORS
class A(i: Int, j: Int) {
constructor(i: Int) : this(i, 2)
val a<selection>: Int</selection><caret> = 1
}