https://issues.dlang.org/show_bug.cgi?id=16578

Seb <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Seb <[email protected]> ---
The problem seems to be due to the associative array.
Reduced a bit further:

---
import std.stdio;

void main()
{
    string[string] opts;
    switch (2)
    {
    case 0:
        opts["a"] = "";
        {
    case 1:
            break;
        }
    default:
    }
}
---

--

Reply via email to