Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0820.cs
1 // CS0820: An implicitly typed local variable declarator cannot use an array initializer
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = { 0 };
10         }
11 }
12