Files
kotlin-fork/compiler/testData/codegen/box/objects/kt1600.kt
T
2020-04-09 15:22:55 +03:00

9 lines
116 B
Kotlin
Vendored

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