Files
kotlin-fork/idea/testData/formatter/EnumInitializerList.kt
T
2018-12-07 18:32:07 +03:00

8 lines
91 B
Kotlin
Vendored

package test
enum class EnumTest(val value: Int) {
VALUE_1
(
value = 0
)
}