1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// CS0432: Alias `BB' not found // Line: 13 namespace A { using BB = System.Collections.Generic; } namespace A.B { class X { BB::List<int> p; } }