Comment #0 by qs.il.paperinik — 2019-04-26T23:58:44Z
mixin has been expanded to accept any number of arguments that are being concatenated. This should also work with an AliasSeq.
alias seq = AliasSeq!("a +", 1);
a = mixin(seq);
should behave the same way as
a = mixin("a +", 1);
The generated error message "Error: undefined identifier `tuple`" is rather confusing.