<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1512</ErrorName>
  <Examples>
    <string>// CS1512: Keyword `base' is not available in the current context
// Line: 11

class Base
{
    private string B () { return "a"; }
}

class E
{
   private string B = base.B ();
}
</string>
    <string>// CS1512: Keyword `base' is not available in the current context
// Line: 11

struct S
{
	delegate int D ();
	
	void Test ()
	{
		D d = delegate { 
			return base.GetHashcode ();
		};
	}
}
</string>
  </Examples>
</ErrorDocumentation>