blob: 526e185b6ac1ff6d3c432821f0a64b42e0842055 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag12640.d(14): Error: undefined identifier `asdf`
fail_compilation/diag12640.d(23): Error: undefined identifier `asdf`
---
*/
void main()
{
switch (1)
{
case 0:
asdf;
break;
default:
}
switch (1)
{
default:
asdf;
break;
case 0:
}
}