7 lines
119 B
Kotlin
Vendored
7 lines
119 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box() : String {
|
|
val i = 1
|
|
return if(i.javaClass.getSimpleName() == "int") "OK" else "fail"
|
|
}
|