mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Hierarchy of specially wrapped suspend function may have inconsistent overridden descriptors: some of them may be wrapped, some unwrapped. To mitigate this problem, currently it's proposed to render only unwrapped functions, which are always have stable overridden descriptors #KT-23809 Fixed
10 lines
142 B
Kotlin
Vendored
10 lines
142 B
Kotlin
Vendored
interface A<T> {
|
|
suspend fun foo(): T
|
|
}
|
|
|
|
interface B<K> : A<K>
|
|
|
|
abstract class C<V> : B<V> {
|
|
override suspend fun foo(): V = TODO()
|
|
}
|