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