// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE inline fun Function1.compareTo(p: Function1) = 1 inline fun ExtensionFunction1.compareTo(index : ExtensionFunction1) = 1 inline fun inlineFunWithInvoke(s: (p: T) -> U, ext: T.(p: U) -> V) { s < s s <= s s > s s >= s ext < ext ext > ext ext <= ext ext >= ext } //noinline fun Function2.compareTo(index : Function2) = 1 fun ExtensionFunction2.compareTo(index : ExtensionFunction2) = 1 inline fun inlineFunWithInvoke(s: (p: T, l: U) -> V, ext: T.(p: U, l: V) -> W) { s < s s <= s s > s s >= s ext < ext ext > ext ext <= ext ext >= ext }