dfmt/tests/issue0049.d
Hackerpilot b989388e7c Fix #49
2015-03-07 14:47:02 -08:00

12 lines
137 B
D

void main(string[] args)
{
switch (value)
{
case 0:
return null;
case 1:
// Indented comment
/* fall through */
default:
}
}