MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / aacmp10381.d
blobb08889119517b219f003dc8c26839efac92e85aa
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/aacmp10381.d(12): Error: `>` is not defined for associative arrays
5 ---
6 */
8 bool test10381()
10 int[int] aa1 = [0: 1];
11 int[int] aa2 = [0: 1];
12 return aa1 > aa2;