xxxxxxxxxx
void func(Ts...)(const(Ts)...)
{
pragma(msg, Ts.length);
}
void main()
func!(int, int[])(1, 2, 3);