f747f8543e
#KT-34696 Fixed
14 lines
189 B
Kotlin
Vendored
14 lines
189 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
package packageName
|
|
|
|
import packageName.MyEnum.*
|
|
|
|
enum class MyEnum {
|
|
A, B, C, D, E;
|
|
}
|
|
|
|
fun main() {
|
|
for (value in <caret>MyEnum.values()) {
|
|
}
|
|
} |