1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/aacmp10381.d(12): Error: > is not defined for associative arrays
5 ---
6 */
7 
test10381()8 bool test10381()
9 {
10     int[int] aa1 = [0: 1];
11     int[int] aa2 = [0: 1];
12     return aa1 > aa2;
13 }
14