Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs1729-10.cs
1 // CS1729: The type `Base' does not contain a constructor that takes `0' arguments
2 // Line: 12
3 class Base {
4         Base (string x)
5         {
6         }
7 }
8
9 // Notice how there is no invocation to "base (something)"
10
11 class Derived : Base {
12         Derived ()
13         {
14         }
15 }