6 lines
104 B
Kotlin
6 lines
104 B
Kotlin
fun foo(p: Any) {
|
|
if (p !is String) {
|
|
error("Not String")
|
|
}
|
|
println(<caret>p.size)
|
|
} |