MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail11445.d
blob3295b243815a29155a3000798578674d95f10f09
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail11445.d(11): Error: incompatible types for `(a) + (b)`: both operands are of type `double[string]`
5 ---
6 */
8 void main() {
9 double[string] a = [ "foo" : 22.2 ];
10 double[string] b = [ "bar" : 22.2 ];
11 auto c = a + b;