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

10 lines
116 B
Plaintext
Vendored

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