Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0747-2.cs
1 // CS0747: Inconsistent `object initializer' member declaration
2 // Line: 16
3
4
5 using System;
6 using System.Collections;
7
8 class Data
9 {
10 }
11
12 public class Test
13 {
14         static void Main ()
15         {
16                 var c = new ArrayList { Count = 1, 1 };
17         }
18 }