https://issues.dlang.org/show_bug.cgi?id=16428
--- Comment #3 from Andrei Alexandrescu <[email protected]> --- The error message should be better. Currently: static assert(is(A!(int, 42) == A!(T, x), __isexp_id52, T, x)) is false Proposed: static assert(is(A!(int, 42) == A!(T, x), T, x)) is false (did you mean "alias x"?) --
