<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0432</ErrorName>
  <Examples>
    <string>// CS0432: Alias `Sa' not found
// Line: 6

using S = System;

[assembly: Sa::CLSCompliantAttribute (false)]
</string>
    <string>// CS0432: Alias `X' not found
// Line: 5

using X = System;
using X::Collections.Generic;
</string>
    <string>// CS0432: Alias `fool' not found
// Line: 9

class fool { }

class X {
	static void Main ()
	{
		fool::Console.WriteLine ("hello");
	}
}
</string>
    <string>// CS0432: Alias `fool' not found
// Line: 9

using foo = System;

class X {
	static void Main ()
	{
		fool::Console.WriteLine ("hello");
	}
}
</string>
    <string>// CS0432: Alias `BB' not found
// Line: 13

namespace A
{
	using BB = System.Collections.Generic;
}

namespace A.B
{
	class X
	{
		BB::List&lt;int&gt; p;
	}
}
</string>
  </Examples>
</ErrorDocumentation>