fun test1(x: Any): Boolean {
  return when {
    x is Array<*> -> isArrayOf<String>(/* <this> = x /*as Array<*> */ */)
    else -> false
  }
}

