238340a143
(cherry picked from commit 1677984)
11 lines
197 B
Kotlin
Vendored
11 lines
197 B
Kotlin
Vendored
// FQNAME: EnumClass
|
|
|
|
enum class EnumClass {
|
|
RED, GREEN, BLUE;
|
|
|
|
fun someFun() {
|
|
System.out.println("Hello, world!")
|
|
}
|
|
|
|
fun stringRepresentation() = this.toString()
|
|
} |