49d6bbbd6b
#KT-30985 Fixed
10 lines
233 B
Kotlin
Vendored
10 lines
233 B
Kotlin
Vendored
enum class TestEnum{
|
|
A, B, C
|
|
}
|
|
|
|
fun test() {
|
|
TestEnum.<caret>C
|
|
}
|
|
|
|
//INFO: <div class='definition'><pre><a href="psi_element://TestEnum"><code>TestEnum</code></a><br>enum entry <b>C</b><br>Enum constant ordinal: 2</pre></div>
|