summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1763.cs
blob: d10a7bf2c2037f54d6a66aab2b211a39b95d2cc8 (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)
	{
	}
}