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

9 lines
110 B
Plaintext
Vendored

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