<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1530</ErrorName>
  <Examples>
    <string>// CS1530: Keyword `new' is not allowed on namespace elements
// Line: 8

class Base
{
}

new class X: Base {
}

</string>
    <string>// CS1530: Keyword `new' is not allowed on namespace elements
// Line: 5

namespace A {
	new class X {
	}
}
</string>
    <string>// CS1530: Keyword `new' is not allowed on namespace elements
// Line: 8

new enum E
{
}

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