<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0431</ErrorName>
  <Examples>
    <string>// CS0431: Alias `foo' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'
// Line: 13

using foo = A;

class A {
	public class B { }
}

class X {
	static void Main ()
	{
		foo::B b = new A.B ();
	}
}
</string>
    <string>// 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;
	}
}
</string>
  </Examples>
</ErrorDocumentation>