5 static (int, string) Test1 ()
7 return ValueTuple
.Create (1, "2");
10 static void Test2 ((int Item1
, int Item2
) arg
)
14 static void Test3 ((int a
, string b
) arg
)
18 static (int a
, string b
) Test4 ()
20 return ValueTuple
.Create (1, "x");
30 if (res
.Item2
!= "2") {
34 ValueTuple
<int, string> res2
= res
;
36 Test3 (ValueTuple
.Create (1, "2"));
45 if (res3
.Item2
!= "x")