This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs1528.cs
1 // cs1528.cs: cant specify constructor arguments in declaration
2 // Line:
3 class X {
4         X (int a)
5         {
6         }
7 }
8
9 class Y {
10         static void Main ()
11         {
12                 X x (4);
13         }
14 }