blob: 0f449237e54d1756346ae94a8031df402bf79ff5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0431: Alias `A' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'
// Line: 10
using A = Test;
class Test
{
static void Main ()
{
A::P p;
}
}
|