Files
linux-packaging-mono/mcs/errors/cs0432-5.cs

16 lines
154 B
C#
Raw Normal View History

// CS0432: Alias `BB' not found
// Line: 13
namespace A
{
using BB = System.Collections.Generic;
}
namespace A.B
{
class X
{
BB::List<int> p;
}
}