* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs1528.cs
blob4a15a6b297726d12e2aa981acec3025d6f4d7051
1 // cs1528.cs: Expected ; or = (cannot specify constructor arguments in declaration)
2 // Line: 13
4 class X {
5 X (int a)
10 class Y {
11 static void Main ()
13 X x (4);