<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0703</ErrorName>
  <Examples>
    <string>// CS0703: Inconsistent accessibility: constraint type `I' is less accessible than `C&lt;T&gt;'
// Line: 8

interface I
{
}

public class C&lt;T&gt;  where T : I
{
}</string>
    <string>// CS0703: Inconsistent accessibility: constraint type `A.B&lt;T&gt;.C' is less accessible than `A.B&lt;T&gt;'
// Line: 6

public class A
{
	protected internal class B&lt;T&gt; where T : B&lt;T&gt;.C
	{
		internal class C
		{
		}
	}
}
</string>
    <string>// CS0703: Inconsistent accessibility: constraint type `C.I' is less accessible than `C.Foo&lt;T&gt;()'
// Line: 10

public class C
{
	interface I
	{
	}

	public void Foo&lt;T&gt;()  where T : I
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>