0497f0cba4
#KT-33718 Fixed
13 lines
135 B
Kotlin
Vendored
13 lines
135 B
Kotlin
Vendored
// "Create enum constant 'D'" "true"
|
|
enum class Test {
|
|
A,
|
|
B,
|
|
C;
|
|
|
|
fun test() {
|
|
}
|
|
}
|
|
|
|
fun main() {
|
|
Test.D<caret>
|
|
} |