Files
kotlin/idea/testData/codeInsight/overrideImplement/suspendFun.kt.after
2018-01-16 15:42:02 +01:00

10 lines
232 B
Plaintext
Vendored

interface I {
suspend fun foo()
}
class C : I {
override suspend fun foo() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
}