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