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

13 lines
197 B
Plaintext
Vendored

// FIR_IDENTICAL
interface Runnable {
fun run()
}
class A : Runnable {
fun foo() {
}
override fun run() {
<selection><caret>TODO("Not yet implemented")</selection>
}
}