Just like it is both `Int` and `String` in this ex...
# language-proposals
m
Just like it is both
Int
and
String
in this example 😉
Copy code
val any: Any = Unit
if (any is String && any is Int) {
    val lengthPlusValue = any + any.length
}