// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE -CONFLICTING_JVM_DECLARATIONS -CONFLICTING_OVERLOADS operator fun Function1.minus(p: Function1) { } operator fun @ExtensionFunctionType Function2.minus(p: T.(p: U) -> V) { } inline operator fun Function1.plus(p: Function1) { this - p } inline operator fun @ExtensionFunctionType Function2.plus(p: T.(p: U) -> V) { this - p } inline fun inlineFunWithInvoke(s: (p: T) -> U, ext: T.(p: U) -> V) { s + s ext + ext } inline fun inlineFunWithInvoke(s: (p: T) -> U, ext: T.(p: U) -> V) { s + s ext + ext } inline fun Function1.submit() { this + this } inline fun @ExtensionFunctionType Function2.submit() { this + this }