Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
codegen
/
box
/
traits
/
kt5393.kt
blob: 2b221df2cb39968157da6103dbe9589b701a176d [
file
]
interface
A
{
fun foo
():
String
{
return
"OK"
}
}
interface
B
:
A
class
C
:
B
{
override
fun foo
():
String
{
return
super
.
foo
()
}
}
fun box
():
String
{
return
C
().
foo
()
}