https://d.puremagic.com/issues/show_bug.cgi?id=11885


yebblies <[email protected]> changed:

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


--- Comment #1 from yebblies <[email protected]> 2014-02-07 17:49:28 EST ---
Reduced:

void main()
{
    l:
    for (auto x = ByLine();;)
        continue l;
}

Which gets transformed to this:

void main()
{
    l:
    {
        ByLine x = ByLine();
        try
        {
            for (;;)
            {
                continue l;
            }
        }
        finally
        {
            x.~this();
        }
    }
    return 0;
}

And now the l: is not on the for loop any more.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to