Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
dumpDeclarations
/
intermediateAbstractSuspendFunction.kt
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
()
}