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