Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/equalityUnderNotNullCheck.kt
T
Svetlana Isakova 4a26c9df04 don't report autocast on left expression in equality
if it was checked for not-null beforehand
2013-12-11 19:53:51 +04:00

5 lines
66 B
Kotlin

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