Files
kotlin/compiler/testData/diagnostics/tests/incompleteCode/diagnosticWithSyntaxError/incompleteEnumReference.fir.kt

12 lines
82 B
Kotlin
Vendored

enum class E {
A,
B,
C
}
fun foo() {
val e = E.<!SYNTAX!><!>
}