On Wednesday, 5 June 2019 at 15:41:08 UTC, Kagamin wrote:
> Remove the variadic functions section. That's a tuple
> parameter, not variadic, and should use (future) tuple syntax.
Are you suggesting we will be forced to call
void func(Args...)(int, Args);
Like this:
func(1, (1,2,3));
In the future?