Beef
Beef copied to clipboard
Generic Tuple parameter does not work alongside default value arguments
static void Iffyify<TArgs>(int a = 2, params TArgs args)
where TArgs : Tuple
{}
static void Main()
{
Iffyify(args: "a stringy"); // Error: Too many arguments, expected 1 fewer.
}