10 lines
179 B
C#
10 lines
179 B
C#
|
// 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)
|
||
|
{
|
||
|
}
|
||
|
}
|