Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
d3d24195a53216cd2fe441577c4a522bdc276c5f
/
.
/
compiler
/
testData
/
ir
/
irText
/
classes
/
delegatedImplementationWithExplicitOverride.kt
blob: e6b445c58915cff419b1fd3869185dbf6c925816 [
file
]
// FIR_IDENTICAL
interface
IFooBar
{
fun foo
()
fun bar
()
}
object
FooBarImpl
:
IFooBar
{
override
fun foo
()
{}
override
fun bar
()
{}
}
class
C
:
IFooBar
by
FooBarImpl
{
override
fun bar
()
{}
}