summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0432-5.cs
blob: 6801d320578ca8410ba2b2e99ce647b33ed2aa6e (plain)
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;
	}
}