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

13 lines
211 B
Plaintext
Vendored

// FIR_IDENTICAL
open class A {
open fun Int.foo(): Int {
return 0
}
}
class B: A() {
override fun Int.foo(): Int {
<selection><caret>TODO("Not yet implemented")</selection>
}
}