Files
kotlin-fork/idea/testData/inspectionsLocal/redundantEnumConstructorInvocation/hasArgument.kt
T
2019-02-05 11:16:01 +03:00

5 lines
69 B
Kotlin
Vendored

// PROBLEM: none
enum class Bar(i: Int) {
A(1)<caret>,
B(2)
}