<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <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: 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>
    <string>// CS0426: The nested type `Foo' does not exist in the type `C&lt;int&gt;'
// Line: 11

public abstract class B&lt;T&gt;
{
	public class Foo
	{
	}
}

public class C&lt;T&gt; : B&lt;C&lt;int&gt;.Foo&gt;
{
}
</string>
  </Examples>
</ErrorDocumentation>