// FIR_IDENTICAL class A { fun foo(): E = TODO() } class B(var a: A<*>?) { fun bar() { if (a != null) { a.foo() } } }