Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
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"
)