<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0426</ErrorName>
  <Examples>
    <string>// CS0426: The nested type `M' does not exist in the type `N'
// Line: 6

class A
{
	class B : N.M
	{
	}
}

class N
{
	public const string S = "1";
}
</string>
    <string>// cs0426.cs: The nested type `B' does not exist in the type `A'
// Line: 12

class A
{
}

class Test
{
   public static void Main()
   {
      A.B a;
   }
}
</string>
  </Examples>
</ErrorDocumentation>