Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
dumpDeclarations
/
intermediateAbstractSuspendFunction.kt
blob: 3da7b73e55c89a56c489166cf86cf6e20e92f01f [
file
]
// 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
()
}