<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0527</ErrorName>
  <Examples>
    <string>// CS0527: Type `B' in interface list is not an interface
// Line: 4

struct A : B {
}

struct B : A {
}
</string>
    <string>// CS0527: Type `X' in interface list is not an interface
// Line: 6
class X {
}

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