Treat extension receiver as noinline parameter
#KT-9574 Fixed
This commit is contained in:
+2
-2
@@ -6,8 +6,8 @@ inline fun inlineFun(s: (p: Int) -> Unit, noinline b: (p: Int) -> Unit) {
|
||||
}
|
||||
|
||||
inline fun Function1<Int, Unit>.inlineExt(s: (p: Int) -> Unit, noinline b: (p: Int) -> Unit) {
|
||||
subInline(<!USAGE_IS_NOT_INLINABLE!>this<!>, <!USAGE_IS_NOT_INLINABLE!>s<!>, b)
|
||||
subNoInline(<!USAGE_IS_NOT_INLINABLE!>this<!>, <!USAGE_IS_NOT_INLINABLE!>s<!>, b)
|
||||
subInline(this, <!USAGE_IS_NOT_INLINABLE!>s<!>, b)
|
||||
subNoInline(this, <!USAGE_IS_NOT_INLINABLE!>s<!>, b)
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user