Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/implementFromClassName.kt
T
2021-05-07 00:40:41 +03:00

9 lines
106 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Runnable {
fun run()
}
class <caret>A : Runnable {
fun foo() {
}
}