MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail19955.d
blobe2af71f2d91a69f5a4ca49fd3ddba4a99f049b8d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail19955.d(7): Error: `switch` statement without a `default`; use `final switch` or add `default: assert(0);` or add `default: break;`
5 ---
6 */
7 void f() { switch(1) static assert(1); }