Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8131.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 362c5916c8910575e19ad9dc9b1f1106c8f29554 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS8131: Deconstruct assignment requires an expression with a type on the right-hand-side
// Line: 9

class C
{
	public static void Main ()
	{
		int x, y;
		(x, y) = null;
	}
}