blob: ab18dc8c0598a68a9d4bd5b417497ed76250df29 [file]
// RUN_PIPELINE_TILL: BACKEND
fun test(a: Any?) {
if (a != null) {
a.foo(11)
}
}
fun <T> Any.foo(t: T) = t
/* GENERATED_FIR_TAGS: equalityExpression, funWithExtensionReceiver, functionDeclaration, ifExpression, integerLiteral,
nullableType, smartcast, typeParameter */