Files
kotlin-fork/compiler/testData/codegen/box/enum/kt2350.kt
T
2018-06-09 19:15:38 +03:00

9 lines
146 B
Kotlin
Vendored

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