Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
kt2887.kt
blob: 75e5970b7f6e3c257d40ad882d1ce0b654374474 [
file
] [
log
] [
blame
]
open
class
Base
<
T
>
{
public
open fun foo
(
t
:
T
):
T
=
t
public
open fun bar
()
{}
}
class
Child
:
Base
<
String
>()
{
override
fun foo
(
t
:
String
):
String
{
return
super
<
Base
>.
foo
(
t
)
}
override
fun bar
()
{
super
.
bar
()
}
}
// 1 bridge