<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1763</ErrorName>
  <Examples>
    <string>// CS1763: Optional parameter `o' of type `object' can only be initialized with `null'
// Line: 6

class C
{
	public static void Test (object o = 9, params object[] args)
	{
	}
}
</string>
    <string>// CS1763: Optional parameter `o' of type `object' can only be initialized with `null'
// Line: 6

class C
{
	public static void Test (object o = 9)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>