Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0431-2.cs
1 // CS0431: Alias `A' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'
2 // Line: 10
3
4 using A = Test;
5
6 class Test
7 {
8         static void Main ()
9         {
10                 A::P p;
11         }
12 }