Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt1568.kt
T
2018-12-21 16:09:05 +01:00

9 lines
143 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
fun box() : String {
val i = 1
return if(i.javaClass.getSimpleName() == "int") "OK" else "fail"
}