On Sat, May 9, 2020 at 7:20 AM Adam D. Ruppe via Digitalmars-d <digitalmars-d@puremagic.com> wrote:
On Friday, 8 May 2020 at 20:53:39 UTC, Q. Schroll wrote:
>     alias Tup = Tuple!(int, long);

This is just a struct, the ... shouldn't do anything to it
(probably should be a syntax error).

The ... thing is all about compiler tuples which are
unfortunately named the same but totally separate to library
tuples.

^^^
std.typecons.Tuple is a struct. It's not a tuple.