blob: fc1a1975e6448ff7ca033a6efe959af02b1b4223 [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:
}
}