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

10 lines
126 B
Kotlin
Vendored

class A(val x: String) {
class C {<caret>}
fun foo() {
}
constructor(x: String, y: Int) : this(x) {
}
}