Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/qualifiedExpression/enumConstant.kt
T

9 lines
89 B
Kotlin
Vendored

// FIR_IDENTICAL
enum class E {
E1,
E2 { };
}
fun foo() = E.E1
fun bar() = E.E2