41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
10 lines
134 B
Kotlin
10 lines
134 B
Kotlin
enum class A() {
|
|
ENTRY: A(){ override fun t() = "OK"}
|
|
|
|
abstract fun t(): String
|
|
}
|
|
|
|
fun f(a: A) = a.t()
|
|
|
|
fun box()= f(A.ENTRY)
|