4973d3c359
#KT-36461 Fixed #KT-36462 Fixed
10 lines
108 B
Kotlin
Vendored
10 lines
108 B
Kotlin
Vendored
// "Create enum constant 'C'" "true"
|
|
enum class Bar {
|
|
A,
|
|
B,
|
|
;
|
|
}
|
|
|
|
fun main() {
|
|
Bar.C<caret>
|
|
} |