Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
dumpDeclarations
/
suspendOverride.kt
blob: f3691c10e803aeac0bea8eb5b15cc2d59c872128 [
file
]
// WITH_RUNTIME
interface
A
{
suspend fun foo
():
Boolean
}
class
B
:
A
{
suspend
override
fun foo
():
Boolean
=
true
}
open
class
C
{
suspend fun foo
():
Boolean
=
true
}
class
D
:
C
(),
A