mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
11 lines
158 B
Kotlin
Vendored
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()
|
|
}
|