blob: 3da7b73e55c89a56c489166cf86cf6e20e92f01f [file] [log] [blame]
// WITH_STDLIB
interface A<T> {
suspend fun foo(): T
}
interface B<K> : A<K>
abstract class C<V> : B<V> {
override suspend fun foo(): V = TODO()
}