<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1521</ErrorName>
  <Examples>
    <string>// CS1521: Invalid base type `C*'
// Line: 9
// Compiler options: -unsafe

struct C
{
}

unsafe class C2: C*
{
}
</string>
    <string>// CS1521: Invalid base type `object[]'
// Line: 4

class C2: object[]
{
}
</string>
    <string>// CS1521: Invalid base type `C?'
// Line: 8

struct C
{
}

class C2: C?
{
}

</string>
    <string>// CS1521: Invalid base type `C[]'
// Line: 8

class C
{
}

class C2: C[]
{
}

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