Files
kotlin-fork/compiler/testData/diagnostics/tests/incompleteCode/diagnosticWithSyntaxError/incompleteEnumReference.kt
T

13 lines
99 B
Kotlin
Vendored

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