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

14 lines
265 B
Plaintext
Vendored

abstract class A {
// INFO: {"checked": "true", "toAbstract": "true"}
abstract val foo8: Int
// INFO: {"checked": "true"}
fun barw() {
}
}
class B : A() {
// INFO: {"checked": "true", "toAbstract": "true"}
override val foo8: Int = 1
}