https://issues.dlang.org/show_bug.cgi?id=17995

Simen Kjaeraas <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Simen Kjaeraas <[email protected]> ---
Example code that demonstrates the behavior:

import std.meta;

alias a = NoDuplicates!(AliasSeq!(1, Repeat!(1000, 3)));
alias b = NoDuplicates!(AliasSeq!(1, Repeat!(10, 3)));

static assert(a.length == b.length);

a is AliasSeq!(3), b is AliasSeq!(1,3).

--

Reply via email to