Files
kotlin-fork/idea/testData/intentions/removeEmptyClassBody/nestedClassFollowedBySecondaryConstructor2.kt
T

11 lines
145 B
Kotlin
Vendored

// IS_APPLICABLE: false
class A(val x: String) {
class C {<caret>}
// comments
constructor(x: String, y: Int) : this(x) {
}
}