Merge branch 'master' of http://github.com/mono/mono
[mono.git] / mcs / errors / cs0143.cs
1 // CS0143: The class `A' has no constructors defined\r
2 // Line: 9\r
3 // Compiler options: -r:CS0143-lib.dll\r
4 \r
5 public class Test\r
6 {\r
7         public static void Main ()\r
8         {\r
9                 new A ();\r
10         }\r
11 }\r