// FIR_IDENTICAL // !LANGUAGE: +ForbidExtensionCallsOnInlineFunctionalParameters // !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE -RECURSION_IN_INLINE inline operator fun Function1.not() : Boolean { return !this } inline fun inlineFunWithInvoke(s: (p: T) -> V) { !s } operator fun Function2.not() : Boolean { return !this } operator fun @ExtensionFunctionType Function3.not() : Boolean { return !this } inline fun inlineFunWithInvoke(s: (p: T, l: U) -> V, ext: T.(p: T, l : U) -> V) { !s !ext }