Files
kotlin/compiler/testData/codegen/boxWithJava/enum/simpleJavaEnum.kt
Alexander Udalov 86938f57b1 Remove codegen tests with Java, move testData to boxWithJava/
There'll be a single generated test class like
BlackBoxCodegenTestGenerated
2013-01-28 18:20:37 +04:00

6 lines
92 B
Kotlin

import test.*
fun box() =
if (simpleJavaEnum.A.toString() == "A") "OK"
else "fail"