1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS0426: The nested type `M' does not exist in the type `N' // Line: 6 class A { class B : N.M { } } class N { public const string S = "1"; }