41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
11 lines
216 B
Kotlin
11 lines
216 B
Kotlin
public abstract class AbstractClass<T> {
|
|
public abstract val some: T
|
|
}
|
|
|
|
public class Class: AbstractClass<String>() {
|
|
public override val some: String
|
|
get() = "OK"
|
|
}
|
|
|
|
fun box(): String = Class().some
|