Files
kotlin-fork/compiler/testData/psi/EnumSemicolonBetweenWithMembers.kt
T
2015-05-15 16:13:41 +03:00

10 lines
130 B
Kotlin
Vendored

enum class Color {
NORTH;
fun foo() = 1
SOUTH;
companion object {
fun bar() = 2
}
WEST;
EAST
}