Updated with review feedback.
[mono.git] / mcs / errors / cs1525-15.cs
1 // CS1525: Unexpected symbol `;', expecting `,' or `}'
2 // Line: 10
3
4 class X {
5     public int Field;
6
7     static void Main ()
8     {
9         var x = new X () {
10             Field = 1;
11         };
12     }
13 }