// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER inline operator fun T.plus(p: T): T = this inline operator fun T.invoke(): T = this fun main(tp: A, any: Any) { tp + tp any + any tp() any() }