Extract Class: Implement 'Extract Superclass' refactoring

#KT-11017 In Progress
This commit is contained in:
Alexey Sedunov
2016-09-05 15:56:16 +03:00
parent 8f5725345f
commit af2de09840
44 changed files with 1145 additions and 125 deletions
@@ -0,0 +1,15 @@
// NAME: X
interface T {}
open class A
open class X : A() {
// INFO: {checked: "true"}
fun foo() {
}
}
// SIBLING:
class B : X(), T {
}