MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test10.d
blob4c1425772b256a061d35b5f5f03b4ae91b453b41
1 /* TEST_OUTPUT:
2 ---
3 fail_compilation/test10.d(10): Error: found `else` without a corresponding `if`, `version` or `debug` statement
4 ---
5 */
7 void test(int i)
9 ++i;
10 else
11 ++i;