summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1910.cs
blob: 37cdbf1c943e671f622fe97b9d8b8fc3d2061319 (plain)
1
2
3
4
5
6
7
8
9
10
// 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)
	{
	}
}