11 lines
177 B
Plaintext
Vendored
11 lines
177 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
interface I {
|
|
suspend fun foo()
|
|
}
|
|
|
|
class C : I {
|
|
override suspend fun foo() {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|