[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0747.cs
1 // CS0747: Inconsistent `collection 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 { 1, Count = 1 };
17         }
18 }