[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1644-31.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 }