Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/noUnnecessarySmartCastForReceiver.fir.kt
T

7 lines
83 B
Kotlin
Vendored

fun Any?.foo() {}
fun test(a: Any?) {
if (a != null) {
a.foo()
}
}