Align libgc vcxproj with makefile.
[mono.git] / mcs / errors / cs1525-9.cs
1 // CS1525: Unexpected symbol `(', expecting `,', `;', or `='
2 // Line: 13
3
4 class X {
5         X (int a)
6         {
7         }
8 }
9
10 class Y {
11         static void Main ()
12         {
13                 X x (4);
14         }
15 }