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

9 lines
120 B
Kotlin
Vendored

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