[w32file] Remove dead code
[mono.git] / mcs / errors / cs1644-25.cs
1 // CS1644: Feature `object initializers' cannot be used because it is not part of the C# 2.0 language specification
2 // Line: 14
3 // Compiler options: -langversion:ISO-2
4
5 class Data
6 {
7         public int Value;
8 }
9
10 class A
11 {
12         void Foo ()
13         {
14                 new Data () { Value = 3 };
15         }
16 }