5 lines
91 B
Kotlin
5 lines
91 B
Kotlin
// "Replace a cast with a static assert" "true"
|
|
fun foo(a: String) {
|
|
val b = a : Any
|
|
}
|