// cs1501-2.cs: No overload for method `X' takes `0' arguments // Line: 11 class X { X (int a) { } static void Main () { new X (); } }