13 lines
129 B
Kotlin
13 lines
129 B
Kotlin
package test
|
|
|
|
import dependency.*
|
|
|
|
public enum class Enum : Tr {
|
|
ONE
|
|
TWO
|
|
THREE {
|
|
fun g() {
|
|
}
|
|
}
|
|
}
|