dmd/compiler/test/compilable/test17752.d
2022-07-09 18:53:07 +02:00

12 lines
246 B
D

// https://issues.dlang.org/show_bug.cgi?id=17752
// REQUIRED_ARGS: -de
void main (string[] args)
{
switch (args.length)
{
// initialization not done on purpose is allowed
int x = void;
default:
break;
}
}