On Tuesday, 10 November 2015 at 10:28:45 UTC, Marc Schütz wrote:
This fails, too:
static assert(is(AliasSeq!(char) : AliasSeq!(dchar)));

Which makes sense IMO, because it can be thought of as an unnamed struct, cp. the following:

struct A { char c; }
struct B { dchar c; }
static assert(is(A : B)); // fails, as expected

You're talking about Tuple. I'm talking about AliasSeq.

Reply via email to