2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1912.cs
blob8d21cb780fdb0068d9af61bdfb4f9a419e2b8775
1 // CS1912: An object initializer includes more than one member `Count' initialization
2 // Line: 17
5 using System;
6 using System.Collections.Generic;
8 public class Test
10 class Container
12 public int Count;
15 static void Main ()
17 var c = new Container { Count = 1, Count = 10 };