4d9b19da82
#KT-18539 Fixed
12 lines
213 B
Plaintext
Vendored
12 lines
213 B
Plaintext
Vendored
interface I {
|
|
suspend fun foo()
|
|
}
|
|
|
|
class A : I {
|
|
override suspend fun foo() {
|
|
<caret><selection>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|
|
|
|
// ELEMENT_TEXT: "override suspend fun foo() {...}"
|