Wed Oct 17 13:24:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / errors / gcs1644-4.cs
1 // CS1644: Feature `collection initializers' cannot be used because it is not part of the C# 2.0 language specification
2 // Line: 9
3 // Compiler options: -langversion:ISO-2
4
5 using System.Collections.Generic;
6
7 class A
8 {
9         void Foo ()
10         {
11                 object o = new List<int> { 1, 2, 3 };
12         }
13 }