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