* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs1501-10.cs
blob62275ac2a0704a302e4b9097acd499b70b6760a6
1 // cs1501-10.cs: No overload for method `Base' takes `0' arguments
2 // Line: 12
3 class Base {
4 Base (string x)
9 // Notice how there is no invocation to "base (something)"
11 class Derived : Base {
12 Derived ()