What is the result of calling `cast<String>(123)` with this generic helper?inline fun <reified T> cast(value: Any): T = value as T fun main() { val s: String = cast(123) println(s.length) }