<?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>CS1763</ErrorName>
  <Examples>
    <string>// CS1763: Optional parameter `c' of type `C' can only be initialized with `null'
// Line: 10
// Compiler options: -langversion:future

struct S
{
}

class C
{
	public static void Test (C c = new S ())
	{
	}
}
</string>
    <string>// CS1763: Optional parameter `o' of type `object' can only be initialized with `null'
// Line: 6
// Compiler options: -langversion:future

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