And like with them, it's impossible to use ref for this, because you can't useref with variadic template arguments.
Wait what?
void foo(T...)(ref T args)
{
args[0] = 42;
}
void main()
{
int x;
foo(x);
assert(x == 42);
}
