Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1fbe2c8085532ef2fa66bf26fdf2b04c5cca97
/
.
/
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
())