view tests/mini/loops1.d @ 395:71a40b62b408

Start a new basic block after a continue statement. Fixes bug_d_irstate_244_A/b.
author Christian Kamm <kamm incasoftware de>
date Sat, 26 Jul 2008 15:00:57 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module tangotests.loops1;

void main()
{
    size_t n;
    int x;
    ushort foo;
    for (n=0; n<8; n++,x++)
    {
        foo >>= 1;
    }
}