mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
16 lines
219 B
D
16 lines
219 B
D
// https://issues.dlang.org/show_bug.cgi?id=16578
|
|
|
|
void main()
|
|
{
|
|
string[string] opts;
|
|
switch (2)
|
|
{
|
|
case 0:
|
|
opts["a"] = "";
|
|
{
|
|
case 1:
|
|
break;
|
|
}
|
|
default:
|
|
}
|
|
}
|