9 lines
143 B
Kotlin
Vendored
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"
|
|
}
|