(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
b17111.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);
    }
}