blob: f74ecfacd6d6c04b9dfbd7c7da8310a67c3806e1 [file] [log] [blame]
// WITH_RUNTIME
fun foo(a: Any) {
when (a) {
"" -> println(a)
is String -> println(a)
is List<*> -> @Suppress("UNCHECKED_CAST")
println(a as List<String>)
}
}