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

10 lines
104 B
Kotlin
Vendored

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