]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test16578a.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test16578a.d
CommitLineData
5fee5ec3
IB
1// REQUIRED_ARGS: -debug
2
3// https://issues.dlang.org/show_bug.cgi?id=16578
4
5string[string] opts;
6
7void main()
8{
9 string arg;
10 switch (arg)
11 {
12 case "-f": opts["fore"] = ""; break;
13 debug { case "-throw": opts["throw"] = ""; break; }
14 default:
15 }
16}