1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
8 lines
121 B
Kotlin
8 lines
121 B
Kotlin
enum class A(val b: String) {
|
|
E1("OK"){ override fun t() = b };
|
|
|
|
abstract fun t(): String
|
|
}
|
|
|
|
fun box()= A.E1.t()
|