1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS0426: The nested type `B' does not exist in the type `A' // Line: 12 class A { } class Test { public static void Main() { A.B a; } }