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

8 lines
72 B
Kotlin
Vendored

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