Files
kotlin-fork/idea/testData/intentions/joinDeclarationAndAssignment/multipleConstructorsWithThis.kt
T

13 lines
153 B
Kotlin
Vendored

// IS_APPLICABLE: false
class My {
val x: Int<caret>
constructor(x: Int) {
this.x = x
}
constructor() {
x = 42
}
}