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

8 lines
127 B
Kotlin
Vendored

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