2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1729-10.cs
blob2912f11be2111ef151884f3bceddeb1fa7abe5f2
1 // CS1729: The type `Base' does not contain a constructor that 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 ()