dmd/compiler/test/compilable/b17111.d
2022-07-09 18:53:07 +02:00

11 lines
213 B
D

alias TestType = ubyte;
void test(immutable TestType a, immutable TestType b, TestType c)
{
switch(c)
{
case a: break;
case (cast(ushort)b): break;
default: assert(false);
}
}