Is this error related to this (supposedly fixed) bug?
static assert([1: 1] != [1: 2, 2: 1]); // OK
static assert([1: 1] != [1: 2]); // OK
static assert([1: 1] != [2: 1]); // Error!
DMD 2.067-rc1
Comment #4 by k.hara.pg — 2015-03-24T15:27:36Z
(In reply to Nicolas Sicard from comment #3)
> Is this error related to this (supposedly fixed) bug?
>
> static assert([1: 1] != [1: 2, 2: 1]); // OK
> static assert([1: 1] != [1: 2]); // OK
> static assert([1: 1] != [2: 1]); // Error!
>
> DMD 2.067-rc1
It's a bug in the pull 2869 implementation.
New issue for that: https://issues.dlang.org/show_bug.cgi?id=14325