Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1525-46.cs
1 // CS1525: Unexpected symbol `;', expecting `(', `[', or `{'
2 // Line: 7
3
4 class X {
5         static void Main ()
6         {
7                 X x = new X;
8         }
9 }