// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER open class A { open val servers: List get() = findAndExpand({ "hi" }) .mapNotNull { B.foo(it) } fun findAndExpand(vararg path: () -> String): List = TODO() } object B { inline fun foo(bar: String?): T? = TODO() } open class C class D : C()