Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs8181.cs
1 // CS8181: Tuple type cannot be used in an object creation expression. Use a tuple literal expression instead
2 // Line: 8
3
4 class C
5 {
6         static void Main ()
7         {
8                 var x = new (long, int) () {
9                         Item1 = 1
10                 };
11         }
12 }