MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / b15909.d
blob22c58da610b809b4879fd8ddc5f937290c8a3441
1 /* TEST_OUTPUT:
2 ---
3 fail_compilation/b15909.d(12): Error: duplicate `case 'a'` in `switch` statement
4 ---
5 */
7 void main()
9 switch ('a')
11 case 'a':
12 case 'a':
13 break;