<?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>CS1750</ErrorName>
  <Examples>
    <string>// CS1750: Optional parameter expression of type `S' cannot be converted to parameter type `C'
// Line: 10

struct S
{
}

class C
{
	public static void Test (C c = new S ())
	{
	}
}
</string>
    <string>// CS1750: Optional parameter expression of type `decimal' cannot be converted to parameter type `int?'
// Line: 6

public class TS
{
	public static void Test (int? i = 1m)
	{
	}
}
</string>
    <string>// CS1750: Optional parameter expression of type `string' cannot be converted to parameter type `int'
// Line: 6

public class C
{
	public C (int a = "a")
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>