983339e1c9
Error message reported directly on semicolon.
10 lines
130 B
Kotlin
Vendored
10 lines
130 B
Kotlin
Vendored
enum class Color {
|
|
NORTH;
|
|
fun foo() = 1
|
|
SOUTH;
|
|
companion object {
|
|
fun bar() = 2
|
|
}
|
|
WEST;
|
|
EAST
|
|
} |