d3648bce0c
This commit makes compiler tests working similarly to ResolveByStub IDE tests.
9 lines
132 B
Kotlin
Vendored
9 lines
132 B
Kotlin
Vendored
// ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
enum class En(val b: Boolean = true, val i: Int = 0) {
|
|
E1(),
|
|
E2(true, 1),
|
|
E3(i = 2)
|
|
}
|