package test fun T.noInline(p: (T) -> Unit) { p(this) } inline fun inlineCall(p: () -> Unit) { p() }