Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
suspendFun.kt.after
blob: e33017d5afab91a4f62588f1aba858fc57de61b7 [
file
]
interface
I
{
suspend fun foo
()
}
class
C
:
I
{
override
suspend fun foo
()
{
<selection><caret>
TODO
(
"Not yet implemented"
)</
selection
>
}
}