#KT-19924: Fix usability issue with extract declaration from file intention

Fix ExtractDeclaration intention name in tests

Fix ExtractDeclaration intention folder and description to avoid "not found Dir URL" exception
This commit is contained in:
Vadim Brilyantov
2019-01-29 19:29:24 +03:00
parent 888641e7f1
commit 0ec3d15218
21 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
// "Make 'Some' abstract" "false"
// ACTION: Create test
// ACTION: Implement members
// ACTION: Move 'Some' to separate file
// ACTION: Extract 'Some' from current file
// ACTION: Rename file to Some.kt
// ERROR: Object 'Some' is not abstract and does not implement abstract member public abstract fun foo(): Unit defined in T
interface T {
fun foo()
}
object <caret>Some : T
object <caret>Some : T