xxxxxxxxxx
import std.meta : AliasSeq;
class C
{
this(int, string) { }
}
alias Types = AliasSeq!(int, string, C);
void foo(Types...) { }
void main()
foo(1, "abc", 2, "xyz");