Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/override/Suspend.kt.after
T
2018-01-16 15:42:03 +01:00

12 lines
285 B
Plaintext
Vendored

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