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

cs8132.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3855d31159c77a4b14520b09e2e5158a1e5016c2 (plain)
1
2
3
4
5
6
7
8
9
10
// CS8132: Cannot deconstruct a tuple of `2' elements into `3' variables
// Line: 8

class C
{
	public static void Main ()
	{
		var (t, u, v) = (1, 2);
	}
}