7 lines
101 B
Kotlin
7 lines
101 B
Kotlin
package test.kotlin
|
|
|
|
public enum class KotlinEnum {
|
|
ENTRY
|
|
|
|
public fun foo(): String = "foo"
|
|
} |