https://issues.dlang.org/show_bug.cgi?id=14411
--- Comment #2 from Ketmar Dark <[email protected]> --- specs says nothing about other cases. turn on compiler warnings and you will see something like this: z00.d(25): Warning: switch case fallthrough - use 'goto case;' if intended z00.d(28): Warning: switch case fallthrough - use 'goto default;' if intended what compiler doesn't tell you, however, is that "case 1, 2:" is not what you may think, it equals to "case 2:". p.s. no, i still don't know why warnings aren't turned off by default. --
