Can `addNewImplicitReceivers` be used to add a rec...
# compiler
j
Can
addNewImplicitReceivers
be used to add a receiver inside a lambda? But without calling the function inside the lambda. Example:
Copy code
injectAlgebra<A> {
    a1 + a2 // ok
}

a1 <!UNRESOLVED_REFERENCE!>+<!> a2 // error
🚫 1