6a9c368532
#KT-14100 Fixed (cherry picked from commit 61730ee)
16 lines
208 B
Plaintext
Vendored
16 lines
208 B
Plaintext
Vendored
// "Import member" "true"
|
|
package e
|
|
|
|
import e.ImportClass.Companion.BLUE
|
|
|
|
enum class ImportEnum {
|
|
RED, GREEN, BLUE
|
|
}
|
|
|
|
class ImportClass {
|
|
companion object {
|
|
val BLUE = 0
|
|
}
|
|
}
|
|
|
|
val v5 = BLUE |