<?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>CS0061</ErrorName>
  <Examples>
    <string>// CS0061: Inconsistent accessibility: base interface `B.IBase' is less accessible than interface `A.IDerived'
// Line: 6

public class A
{
	protected interface IDerived : B.IBase
	{
	}
}

public class B
{
	protected internal interface IBase 
	{
	}
}
</string>
    <string>// CS0061: Inconsistent accessibility: base interface `B.IBase' is less accessible than interface `A.IDerived'
// Line: 6

public class A
{
	protected internal interface IDerived : B.IBase
	{
	}
}

public class B
{
	protected internal interface IBase 
	{
	}
}
</string>
    <string>// cs0061.cs: Inconsistent accessibility: base interface `IFoo' is less accessible than interface `IBar'
// Line: 9

using System;

interface IFoo {
}

public interface IBar : IFoo {
}

class ErrorCS0061 {
	public static void Main () {
	}
}

</string>
  </Examples>
</ErrorDocumentation>