Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0432-5.cs
1 // CS0432: Alias `BB' not found
2 // Line: 13
3
4 namespace A
5 {
6         using BB = System.Collections.Generic;
7 }
8
9 namespace A.B
10 {
11         class X
12         {
13                 BB::List<int> p;
14         }
15 }