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

[email protected] changed:

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

--- Comment #2 from [email protected] ---
Reduced further:

----
bool check()
{
    bool result = false;

    result |= false;   // result = result | ... : OK
    if (result) goto ret;     // remove this line       : OK

    result |= false;   // result = result | ... : OK
    if (result) {}     // remove this line       : OK

    ret: return true;
}

enum e = check();
----

--

Reply via email to