**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0112-2.cs
blob161702a2044e39d757f1f18352b24fa9969b670c
1 // CS0112: `Foo.A.A' is inaccessible due to its protection level
2 // Line: 11
3 namespace Foo
5 class A
7 private A (int a)
8 { }
11 class T : A