blob: a3cfc11ed19317d33c69186fb094fa5a93b86a64 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail11445.d(11): Error: incompatible types for ((a) + (b)): 'double[string]' and 'double[string]'
---
*/
void main() {
double[string] a = [ "foo" : 22.2 ];
double[string] b = [ "bar" : 22.2 ];
auto c = a + b;
}