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

10 lines
160 B
Plaintext
Vendored

interface I {
suspend fun foo()
}
class C : I {
override suspend fun foo() {
<selection><caret>TODO("Not yet implemented")</selection>
}
}