2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0431.cs
blob34fa647762adec9709c087f7a4cea9d798255715
1 // CS0431: Alias `foo' cannot be used with '::' since it denotes a type. Consider replacing '::' with '.'
2 // Line: 13
4 using foo = A;
6 class A {
7 public class B { }
10 class X {
11 static void Main ()
13 foo::B b = new A.B ();