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