2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0747.cs
blobf5085d381ff564b37a473c10a936e94dc4b3a32f
1 // CS0747: Inconsistent `collection initializer' member declaration
2 // Line: 16
5 using System;
6 using System.Collections;
8 class Data
12 public class Test
14 static void Main ()
16 var c = new ArrayList { 1, Count = 1 };