view test/switch1.d @ 177:cea8dcfa76df trunk

[svn r193] Fixed: abstract classes implementing interfaces now output proper Interface info arrays. (null vtables). Did a little renaming of delegate utils.
author lindquist
date Wed, 07 May 2008 04:45:51 +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);
}