<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1909</ErrorName>
  <Examples>
    <string>// CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `System.Type'
// Line: 7

using System.Runtime.InteropServices;

interface ITest {
	void f ([DefaultParameterValue (typeof (ITest))] System.Type x);
}
</string>
    <string>// CS1909: The DefaultParameterValue attribute is not applicable on parameters of type `int[]'
// Line: 7

using System.Runtime.InteropServices;

class Test {
	void f ([DefaultParameterValue (new int[0])] int[] x)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>