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")