[xbuild] Add new reserved properties $(MSBuildThisFile*).
[mono.git] / mcs / errors / cs1526.cs
1 // CS1526: Unexpected symbol `;', expecting `(', `[', or `{'
2 // Line: 7
3
4 class X {
5         static void Main ()
6         {
7                 X x = new X;
8         }
9 }