<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1910</ErrorName>
  <Examples>
    <string>// CS1910: Argument of type `int[]' is not applicable for the DefaultParameterValue attribute
// Line: 7

using System.Runtime.InteropServices;
using System;

class Test {
	void f ([DefaultParameterValue (new int[0])] object x)
	{
	}
}
</string>
    <string>// CS1910: Argument of type `System.Type' is not applicable for the DefaultParameterValue attribute
// Line: 7

using System.Runtime.InteropServices;

class Test {
	void f ([DefaultParameterValue (typeof (object))] object x)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>