blob: f781feec1baba153541cf6a600793ec60a4122a5 [file] [log] [blame]
// 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:
}
}