Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideExtensionFunction.kt.after
T
2019-11-13 08:37:25 +09:00

12 lines
194 B
Plaintext
Vendored

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>
}
}