Files
kotlin/compiler/testData/codegen/box/enum/kt2350.kt
2015-08-10 16:24:12 +03:00

8 lines
121 B
Kotlin
Vendored

enum class A(val b: String) {
E1("OK"){ override fun t() = b };
abstract fun t(): String
}
fun box()= A.E1.t()