mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
17 lines
237 B
C
17 lines
237 B
C
// REQUIRED_ARGS: -wi
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=22930
|
|
|
|
int printf(const char *, ...);
|
|
void exit(int);
|
|
|
|
int main()
|
|
{
|
|
switch (1)
|
|
{
|
|
case 2:
|
|
printf("failed test 22930\n");
|
|
exit(1);
|
|
}
|
|
return 0;
|
|
}
|