Files
kotlin-fork/compiler/testData/codegen/box/when/is.kt
T
2021-10-01 17:18:49 +03:00

13 lines
271 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
fun typeName(a: Any?) : String {
return when(a) {
is ArrayList<*> -> "array list"
else -> "no idea"
}
}
fun box() : String {
if(typeName(ArrayList<Int>()) != "array list") return "array list failed"
return "OK"
}