August 20, 2019
https://issues.dlang.org/show_bug.cgi?id=16277

Manu <turkeyman@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |turkeyman@gmail.com
         Resolution|---                         |INVALID

--- Comment #1 from Manu <turkeyman@gmail.com> ---
That's a shared violation.
You can't transfer unshared `IL i` to `shared(IL) j`, that would raise the
unshared value to shared, and that would be very bad.

--