Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
codegen
/
dumpDeclarations
/
suspendOverride.kt
blob: 5a54c6e9d521f0b82d17a4713dbcee41c5a838bf [
file
] [
log
] [
blame
]
// WITH_STDLIB
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