cs1501.cs 218 B

123456789101112131415
  1. // cs1501.cs: No overload for method `Base' takes `0' arguments
  2. // Line: 12
  3. class Base {
  4. Base (string x)
  5. {
  6. }
  7. }
  8. // Notice how there is no invocation to "base (something)"
  9. class Derived : Base {
  10. Derived ()
  11. {
  12. }
  13. }