mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
246 B
D
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;
|
|
}
|
|
}
|