0ec3d15218
Fix ExtractDeclaration intention name in tests Fix ExtractDeclaration intention folder and description to avoid "not found Dir URL" exception
12 lines
342 B
Kotlin
Vendored
12 lines
342 B
Kotlin
Vendored
// "Make 'Some' abstract" "false"
|
|
// ACTION: Create test
|
|
// ACTION: Implement members
|
|
// 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
|