1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS1729: The type `X' does not contain a constructor that takes `0' arguments // Line: 11 class X { X (int a) { } static void Main () { new X (); } }