Be careful though, it doesn't really work with the...
# announcements
k
Be careful though, it doesn't really work with the rest of the type system:
Copy code
val x = "hello"
val y: Any = "hello"
noString(x) //you want to disallow this
noString(y) //but this will always be possible
👍 1