0ec3d15218
Fix ExtractDeclaration intention name in tests Fix ExtractDeclaration intention folder and description to avoid "not found Dir URL" exception
13 lines
363 B
Kotlin
Vendored
13 lines
363 B
Kotlin
Vendored
// "Implement as constructor parameters" "false"
|
|
// ACTION: Create test
|
|
// ACTION: Implement members
|
|
// ACTION: Make internal
|
|
// ACTION: Make private
|
|
// ACTION: Extract 'A' from current file
|
|
// ERROR: Object 'A' is not abstract and does not implement abstract member public abstract val foo: Int defined in I
|
|
interface I {
|
|
val foo: Int
|
|
}
|
|
|
|
<caret>object A : I
|