Extract Class: Implement 'Extract Interface' refactoring

#KT-11017 Fixed
This commit is contained in:
Alexey Sedunov
2016-09-22 14:29:03 +03:00
parent af2de09840
commit b412edf2a3
22 changed files with 592 additions and 232 deletions
@@ -0,0 +1,13 @@
// NAME: X
// INFO: {checked: "true"}
interface T {}
open class A
// SIBLING:
class <caret>B : A(), T {
// INFO: {checked: "true"}
fun foo() {
}
}