4a26c9df04
if it was checked for not-null beforehand
5 lines
66 B
Kotlin
5 lines
66 B
Kotlin
fun test(a: Any?) {
|
|
if (a is String) {
|
|
a == ""
|
|
}
|
|
} |