val TOP_LEVEL = 5 enum class MyEnum(value: Int) { VALUE(TOP_LEVEL) } fun main(args: Array) { println(MyEnum.VALUE.toString()) }