Files
kotlin-fork/idea/testData/refactoring/pullUp/k2k/fromClassToClassMakeAbstractWithCommentAndAnotherIndent2.kt
T
2019-08-23 14:25:49 +07:00

12 lines
215 B
Kotlin
Vendored

open class A
class Root {
class <caret>B : A() {
// INFO: {"checked": "true"}
fun barw() {
}
// INFO: {"checked": "true", "toAbstract": "true"}
val foo8: Int = 1
}
}