blob: 71f324cc6cdf644b11bfc291e629485e6b0148da [file] [log] [blame]
// 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;
}
}