blob: e9f111a98b33525bf35c15b9bfe70c1f3c52feef [file]
abstract class Foo<T> {
fun hello(id: T) = "O$id"
}
class Bar: Foo<String>() {
}
fun box() = Bar().hello("K")