Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/suspendFun.kt
T
2021-05-07 00:40:41 +03:00

9 lines
84 B
Kotlin
Vendored

// FIR_IDENTICAL
interface I {
suspend fun foo()
}
class C : I {
<caret>
}