[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0431-2.cs
blob0f449237e54d1756346ae94a8031df402bf79ff5
1 // CS0431: Alias `A' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'
2 // Line: 10
4 using A = Test;
6 class Test
8 static void Main ()
10 A::P p;