Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/referenceExpression/enumEntryAddComma.kt.after
2016-02-01 13:18:43 +03:00

10 lines
136 B
Plaintext
Vendored

// "Create enum constant 'PUBLIC'" "true"
enum class TopicState {
PRIVATE,
<caret>PUBLIC
}
fun foo() {
TopicState.PUBLIC
}