Files
kotlin-fork/idea/testData/editor/optimizeImports/common/Enums.dependency.kt
T
Valentin Kipyatkov b84260f39f Fixed multiple bugs in optimize imports for JS-target
#KT-13689 Fixed
2016-10-10 14:48:16 +03:00

16 lines
184 B
Kotlin
Vendored

package dependency
class D {
enum class E1 {
E11,
E12
}
enum class E2 {
E21,
E22
}
enum class E3 {
E31,
E32
}
}