On Wednesday, 18 December 2019 at 17:41:42 UTC, Steven
Schveighoffer wrote:
> [snip]
>
> Nope. Not just variadic templates:
>
> assert(AliasSeq!(2, 2).pow == 4);
>
> Not even templates in general:
>
> int foo(int x, int y) { return x + y; }
>
> assert(AliasSeq!(1, 2).foo == 3);
>
> -Steve
Interesting.