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