<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <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>