Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1547.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 9
3 using System;
4
5 class X
6 {
7         static void Main ()
8         {
9                 void[] a;
10         }
11 }