view test/switch1.d @ 31:2841234d2aea trunk

[svn r35] * Attributes on struct fields/methods now work * Updated object.d to 1.021 * Added -novalidate command line option. this is sometimes useful when debugging as it may let you read the .ll even if it's invalid.
author lindquist
date Thu, 04 Oct 2007 16:44:07 +0200
parents 0e86428ee567
children
line wrap: on
line source

module switch1;

void main()
{
    int i = 2;
    int r;
    switch (i)
    {
    case 1: r+=1; break;
    case 2: r-=2;
    case 3: r=3; break;
    default: r=-1;
    }
    assert(r == 3);
}