MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test16523.d
blob78563c92525a1e1a99fe82d138ab1acc1fcb6be8
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/test16523.d(12): Error: `case` variables have to be `const` or `immutable`
5 ---
6 */
8 void test(int a, int b)
10 switch (a)
12 case b: return;
13 default: assert(0);