After a cast the perceived type of a variable chan...
# announcements
k
After a cast the perceived type of a variable changes:
Copy code
fun foo(a: Any) {
    a as String
    println(a.reverse()) //a is String now
}