Files
kotlin-fork/backend.native/tests/codegen/enum/linkTest_lib.kt
T
Pavel Punegov 35505007d2 TestRunner support in test's build.gradle
* Fixes to tests
 * RunKonanTest runs tests build with TestRunner
 * Standalone tests
2017-10-20 18:25:05 +03:00

7 lines
75 B
Kotlin

package a
enum class A(val x: Int) {
Z1(42),
Z2(117),
Z3(-1)
}