0ec3d15218
Fix ExtractDeclaration intention name in tests Fix ExtractDeclaration intention folder and description to avoid "not found Dir URL" exception
12 lines
211 B
Kotlin
Vendored
12 lines
211 B
Kotlin
Vendored
// "Implement members" "false"
|
|
// ACTION: Create test
|
|
// ACTION: Make internal
|
|
// ACTION: Extract 'A' from current file
|
|
|
|
interface I {
|
|
fun foo()
|
|
}
|
|
|
|
@Suppress("UNSUPPORTED_FEATURE")
|
|
expect <caret>class A : I
|