We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d17223e commit 463b10fCopy full SHA for 463b10f
CSharp7/CSharp7/TupleConstruction.cs
@@ -24,7 +24,7 @@ static void Main()
24
(long a, int b) tuple4 = (1, 2);
25
26
// No names in declaration, so names in construction are irrelevant
27
- var tuple5 = (a: 1, b: 2);
+ (int, int) tuple5 = (a: 1, b: 2);
28
}
29
30
0 commit comments