10 lines
179 B
C#
Raw Normal View History

// 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)
{
}
}