<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0524</ErrorName>
  <Examples>
    <string>// cs0524-2.cs: `Interface.I': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
// Line: 5

interface Interface {
        interface I {}
}</string>
    <string>// cs0524-3.cs: `Interface.E': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
// Line: 4

interface Interface {
        enum E {
            White,
            Black
        }
}</string>
    <string>// cs0524-4.cs: `Interface.C': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
// Line: 5

interface Interface {
        public class C {
        }
}
</string>
    <string>// cs0524-5.cs: `Interface.D': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
// Line: 5

interface Interface {
        delegate void D ();
}
</string>
    <string>// cs0524.cs: `Interface.Struct': Interfaces cannot declare classes, structs, interfaces, delegates, enumerations or constants
// Line: 5

interface Interface {
        public struct Struct {
        }
}
</string>
  </Examples>
</ErrorDocumentation>