Can someone explain this? ``` val test: Any...
# kotlin-native
r
Can someone explain this?
Copy code
val test: Any
        test = UIView()
        println(test::class.toString()) // Prints "class <anonymous>"
Actually it prints that whatever the type of
test
is. Even if the type is
UIView