Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
box
/
super
/
kt14243.kt
blob: 75d5fcb7ae7ae63c5a724c8d585aeb1efaf4b2aa [
file
] [
log
] [
blame
]
interface
Z
<
T
>
{
fun test
(
p
:
T
):
T
{
return
p
}
}
open
class
ZImpl
:
Z
<
String
>
class
ZImpl2
:
ZImpl
()
{
override
fun test
(
p
:
String
):
String
{
return
super
.
test
(
p
)
}
}
fun box
():
String
{
return
ZImpl2
().
test
(
"OK"
)
}