﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0529</ErrorName>
  <Examples>
    <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>