Files
linux-packaging-mono/mcs/errors/cs8126.cs

10 lines
125 B
C#
Raw Normal View History

// CS8126: The tuple element name `Rest' is reserved
// Line: 6
class C
{
static void Test ((int Rest, int b) arg)
{
}
}