Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/override/ImplementFunction.kt.after
T
2019-11-13 08:37:25 +09:00

12 lines
207 B
Plaintext
Vendored

interface I {
fun foo(p: Int)
}
class A : I {
override fun foo(p: Int) {
<caret><selection>TODO("Not yet implemented")</selection>
}
}
// ELEMENT_TEXT: "override fun foo(p: Int) {...}"