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

10 lines
170 B
C#
Raw Normal View History

// CS8184: A deconstruction cannot mix declarations and expressions on the left-hand-side
// Line: 8
class X
{
public static void Main ()
{
(int a, b) = (1, 2);
}
}