Updated with review feedback.
[mono.git] / mcs / errors / cs0426-2.cs
1 // CS0426: The nested type `M' does not exist in the type `N'
2 // Line: 6
3
4 class A
5 {
6         class B : N.M
7         {
8         }
9 }
10
11 class N
12 {
13         public const string S = "1";
14 }