In an inline function with two lambda parameters, only one is marked `noinline`. Which statement about the resulting bytecode/behavior is correct?inline fun process(a: () -> Unit, noinline b: () -> Unit) { /* ... */ }