1 alias TestType = ubyte; 2 test()3 void test() 4 { 5 TestType a,b,c; 6 7 switch(c) 8 { 9 case a: break; 10 case (cast(ushort)b): break; 11 default: assert(false); 12 } 13 } 14