<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0529</ErrorName>
  <Examples>
    <string>// CS0529: Inherited interface `IB' causes a cycle in the interface hierarchy of `IC'
// Line: 12

interface IC : IB
{
}

partial interface IB
{
}

partial interface IB : IC
{
}

</string>
    <string>// CS0529: Inherited interface `C' causes a cycle in the interface hierarchy of `A'
// Line: 10

interface A : B {
}

interface B : C {
}

interface C : A {
}
</string>
  </Examples>
</ErrorDocumentation>