Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
superCallToNonGenericImplThroughGenericDefaultImpls.kt
blob: f10870d2d3379a9ff8bff8455448f21d5e02cab4 [
file
]
interface
A
{
fun foo
(
o
:
String
):
String
=
o
+
"K"
}
interface
B
<
T
>
:
A
class
C
:
B
<
Int
>
{
override
fun foo
(
o
:
String
):
String
{
return
super
<
B
>.
foo
(
o
)
}
}
fun box
():
String
=
C
().
foo
(
"O"
)