<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1908</ErrorName>
  <Examples>
    <string>// CS1908: The type of the default value should match the type of the parameter
// Line: 5

class Test {
	internal void f ([System.Runtime.InteropServices.DefaultParameterValue (1)] short x)
	{
	}
}
</string>
    <string>// CS1908: The type of the default value should match the type of the parameter
// Line: 

class Test&lt;T&gt; where T : class {
	internal void f ([System.Runtime.InteropServices.DefaultParameterValue (null)] T x)
	{
	}
}
</string>
    <string>// CS1908: The type of the default value should match the type of the parameter
// Line: 

class Test {
	internal void f ([System.Runtime.InteropServices.DefaultParameterValue ((short) 1)] int x)
	{
	}
}
</string>
    <string>// CS1908: The type of the default value should match the type of the parameter
// Line: 

class Test {
	internal void f ([System.Runtime.InteropServices.DefaultParameterValue (null)] short x)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>