e2950ec768
Former-commit-id: fc39669a0b707dd3c063977486506b6793da2890
10 lines
170 B
C#
10 lines
170 B
C#
// 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);
|
|
}
|
|
} |