b567817d1f
Fixes #KT-22200
12 lines
285 B
Plaintext
Vendored
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() {...}"
|