blob: c8037bf1c2efdc75bbeded4777d2aa282e051b18 [file] [log] [blame]
// 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()
}