Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt1568.kt
T

7 lines
119 B
Kotlin
Vendored

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