<?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>CS1736</ErrorName>
  <Examples>
    <string>// CS1736: The expression being assigned to optional parameter `s' must be a constant or default value
// Line: 11

struct S
{
	public S ()
	{		
	}
}

class X
{
	public void Foo (S s = new S ())
	{
	}
}</string>
    <string>// CS1736: The expression being assigned to optional parameter `v' must be a constant or default value
// Line: 8

public class C
{
	static int Value = 9;

	public static void Test (int v = Value)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>