Files
Mikhail Glukhikh d3648bce0c Run LoadJava.CompiledKotlin test group with stdlib if some enum is inside
This commit makes compiler tests working similarly to ResolveByStub IDE tests.
2022-08-19 10:08:11 +00:00

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)
}