Files
kotlin/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/equalityUnderNotNullCheck.kt
2014-10-01 18:52:52 +04:00

5 lines
66 B
Kotlin

fun test(a: Any?) {
if (a is String) {
a == ""
}
}