Files
kotlin-fork/idea/testData/refactoring/pullUp/toIndirectSuperClass.kt.after
T
Alexey Sedunov 39ff3c3000 Pull Up: Initial support
#KT-7330 Fixed
2015-07-28 18:48:29 +03:00

13 lines
126 B
Plaintext
Vendored

// TARGET_CLASS: A
open class A {
// INFO: {"checked": "true"}
val x: Int
}
open class B: A() {
}
class C: B() {
}