mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
247 B
Kotlin
12 lines
247 B
Kotlin
fun test(a: Any?) {
|
|
when (a) {
|
|
is String -> {
|
|
val s = a
|
|
<!DEBUG_INFO_SMARTCAST!>s<!>.length()
|
|
}
|
|
"" -> {
|
|
val s = a
|
|
<!DEBUG_INFO_SMARTCAST!>s<!>.hashCode()
|
|
}
|
|
}
|
|
} |