Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0815-2.cs
1 // CS0815: An implicitly typed local variable declaration cannot be initialized with `void'
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = Foo ();
10         }
11
12         static void Foo ()
13         {
14         }
15 }
16