Extract Superclass/Interface: Allow extracting class with special name (and quotes)

#KT-15353 Fixed
This commit is contained in:
Alexey Sedunov
2017-01-11 12:25:28 +03:00
parent 5de4e9fdac
commit 52e9117e9d
8 changed files with 55 additions and 6 deletions
@@ -0,0 +1,8 @@
// NAME: class
// SIBLING:
class <caret>A {
// INFO: {checked: "true"}
fun foo() {
}
}
@@ -0,0 +1,11 @@
interface `class` {
// INFO: {checked: "true"}
fun foo() {
}
}
// NAME: class
// SIBLING:
class A : `class` {
}