summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1763-2.cs
blob: 72f5370949af197f112bc9dd97baeb4e1212ceeb (plain)
1
2
3
4
5
6
7
8
9
// CS1763: Optional parameter `o' of type `object' can only be initialized with `null'
// Line: 6

class C
{
	public static void Test (object o = 9, params object[] args)
	{
	}
}