Enum classes lowering.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
enum class Test1(val x: Int) {
|
||||
ZERO, ONE(1);
|
||||
constructor() : this(0)
|
||||
}
|
||||
|
||||
enum class Test2(val x: Int) {
|
||||
ZERO {
|
||||
override fun foo() {
|
||||
println("ZERO")
|
||||
}
|
||||
},
|
||||
ONE(1) {
|
||||
override fun foo() {
|
||||
println("ONE")
|
||||
}
|
||||
};
|
||||
constructor() : this(0)
|
||||
abstract fun foo()
|
||||
}
|
||||
Reference in New Issue
Block a user