dfmt/tests/issue0046.d

15 lines
109 B
D

class C
{
void func()
{
switch (x)
{
default:
assert(0);
}
}
void main(string[] args)
{}
}