Files
kotlin/compiler/testData/codegen/dumpDeclarations/intermediateAbstractSuspendFunction.kt

11 lines
158 B
Kotlin
Vendored

// WITH_RUNTIME
interface A<T> {
suspend fun foo(): T
}
interface B<K> : A<K>
abstract class C<V> : B<V> {
override suspend fun foo(): V = TODO()
}