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

9 lines
128 B
Kotlin
Vendored

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