Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
kt1600.kt
blob: e9f111a98b33525bf35c15b9bfe70c1f3c52feef [
file
]
abstract
class
Foo
<
T
>
{
fun hello
(
id
:
T
)
=
"O$id"
}
class
Bar
:
Foo
<
String
>()
{
}
fun box
()
=
Bar
().
hello
(
"K"
)