Files
kotlin-fork/compiler/testData/codegen/localcls/enum.kt
T
2012-08-22 18:40:37 +03:00

9 lines
111 B
Kotlin

fun box(): String {
enum class K {
O
K
}
return K.O.toString() + K.K.toString()
}