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

test-tuple-03.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfc07de4a7ecc932e6aac7bae2377a3ba35e7158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using System;
using System.Linq.Expressions;

class TupleDeconstruct
{
	static int s_xx;
	static long s_yy;

	public static int Main ()
	{
		var (xx, yy) = (1, 2);
		if (xx != 1)
			return 1;

		if (yy != 2)
			return 2;

		int x, y;
		(x, y) = (1, 2);
		if (x != 1)
			return 3;

		if (y != 2)
			return 4;

		(s_xx, s_yy) = Test3 ();
		if (s_xx != 1)
			return 5;

		if (s_yy != 3)
			return 6;

//		var cwd = new ClassWithDeconstruct ();
//		var (m1, m2) = cwd;

//		(string, string) ss = cwd; // Error

		return 0;
	}

	static void Test2 ()
	{
		var c = new C ();
		(c.Prop1, c.Prop2) = (1, 2);
	}

	static (int, long) Test3 ()
	{
		return (1, 3);
	}

	static void TestCustom ()
	{
		return;
	}
}

class ClassWithDeconstruct
{
	public void Deconstruct (out string f, out string s)
	{
		f = "a";
		s = "z";
	}
}

class C
{
	public int Prop1 { get; set; }
	public int Prop2 { get; set; }
}