f747f8543e
#KT-34696 Fixed
13 lines
170 B
Kotlin
Vendored
13 lines
170 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
package packageName
|
|
|
|
import packageName.MyEnum.*
|
|
|
|
enum class MyEnum {
|
|
A, B, C, D, E;
|
|
}
|
|
|
|
fun main() {
|
|
<caret>MyEnum.valueOf("A")
|
|
} |