Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[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 }