41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
9 lines
116 B
Kotlin
9 lines
116 B
Kotlin
abstract class Foo<T> {
|
|
fun hello(id: T) = "O$id"
|
|
}
|
|
|
|
class Bar: Foo<String>() {
|
|
}
|
|
|
|
fun box() = Bar().hello("K")
|