mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
282 B
D
16 lines
282 B
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:
|
|
}
|
|
}
|