blob: 3295b243815a29155a3000798578674d95f10f09 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail11445.d(11): Error: incompatible types for `(a) + (b)`: both operands are of type `double[string]`
---
*/
void main() {
double[string] a = [ "foo" : 22.2 ];
double[string] b = [ "bar" : 22.2 ];
auto c = a + b;
}