summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-15.cs
blob: a322aa49d7ccca469f78e31577ae9e7478ad186f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1525: Unexpected symbol `;', expecting `,' or `}'
// Line: 10

class X {
    public int Field;

    static void Main ()
    {
        var x = new X () {
            Field = 1;
        };
    }
}