Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
fakeOverride
/
methodOfAnyFromInterface.kt
blob: 0b33302913d67c22ee403a98173bd78dd8c6f1ae [
file
]
interface
I1
interface
I2
{
override
fun toString
():
String
}
interface
I3
:
I1
,
I2
class
I3Impl
:
I3
{
override
fun toString
()
=
"OK"
}
fun foo
(
i3
:
I3
)
=
i3
.
toString
()
fun box
()
=
foo
(
I3Impl
())