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