Files

8 lines
100 B
Kotlin
Vendored

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