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

8 lines
100 B
Kotlin
Vendored

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