4532f52898
Making enum class-related tests unmuted requires implementing a special "compatibility" mode for IR tree dumper to filter out fake override declarations leaking from java.enum.Enum and kotlin.Enum (JVM-only) classes.
27 lines
423 B
Kotlin
Vendored
27 lines
423 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
enum class Test0(val x: Int) {
|
|
ZERO;
|
|
constructor() : this(0)
|
|
}
|
|
|
|
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()
|
|
}
|