// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE operator inline fun Function1.get(index : Int) { } inline fun inlineFunWithInvoke(s: (p: T) -> U) { s[1] } //noinline operator fun Function2.get(index : Int) { } operator fun @ExtensionFunctionType Function3.get(index : Int) { } inline fun inlineFunWithInvoke(s: (p: T, l: U) -> V, ext: T.(p: U, l: V) -> W) { s[1] ext[1] }