New test.
[mono.git] / mcs / errors / cs0122-18.cs
1 // cs0122-18.cs: `Test.TestClass.TestClass()' is inaccessible due to its protection level\r
2 // Line: 17\r
3 \r
4 namespace Test\r
5 {\r
6         public class TestClass\r
7         {\r
8                 private TestClass() : base()\r
9                 {\r
10                 }\r
11         }\r
12 \r
13         class Class1\r
14         {\r
15                 static void Main(string[] args)\r
16                 {\r
17                         TestClass test = new TestClass();\r
18                 }\r
19         }\r
20