(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test16578a.d
// REQUIRED_ARGS: -debug

// https://issues.dlang.org/show_bug.cgi?id=16578

string[string] opts;

void main()
{
    string arg;
    switch (arg)
    {
        case "-f": opts["fore"] = ""; break;
        debug { case "-throw": opts["throw"] = ""; break; }
        default:
    }
}