Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/equalityUnderNotNullCheck.kt
T

6 lines
83 B
Kotlin
Vendored

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