<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0267</ErrorName>
  <Examples>
    <string>// CS0267: The `partial' modifier can be used only immediately before `class', `struct', `interface', or `void' keyword
// Line: 4

public partial static class Test
{
}
</string>
    <string>// CS0267: The `partial' modifier can be used only immediately before `class', `struct', `interface', or `void' keyword
// Line: 6

public partial class C
{
	partial virtual void Foo ()
	{
	}
}
</string>
    <string>// CS0267: The `partial' modifier can be used only immediately before `class', `struct', `interface', or `void' keyword
// Line: 4

partial enum e {}
</string>
  </Examples>
</ErrorDocumentation>