[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs1729-2.cs
1 // CS1729: The type `X' does not contain a constructor that takes `0' arguments
2 // Line: 11
3 class X {
4
5         X (int a)
6         {
7         }
8         
9         static void Main ()
10         {
11                 new X ();
12         }
13 }
14