Files
kotlin-fork/compiler/testData/codegen/boxInline/simpleEnum/1.kt
T
2014-03-03 15:43:35 +04:00

12 lines
185 B
Kotlin

import test.*
fun test1(): String {
return MyEnum.K.doSmth("O")
}
fun box(): String {
val result = test1()
if (result != "OK") return "fail1: ${result}"
return "OK"
}