MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail57.d
blob41149cdc2f5db9c7928be7fa561f470b868f45d1
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail57.d(11): Error: divide by 0
5 fail_compilation/fail57.d(11): Error: divide by 0
6 ---
7 */
9 int main()
11 int x = 1 / 0;
12 return 0;