**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs1501.cs
blob10342181e2885a9bb96e02c839a44338dfddf102
1 // cs1501.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 ()