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

10 lines
196 B
Kotlin
Vendored

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