Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs8210.cs
1 // CS8210: A tuple literal cannot not contain a value of type `void'
2 // Line: 8
3
4 class XX
5 {
6         public static void Main ()
7         {
8                 var m = (1, Main ());
9         }
10 }