2 using System
.Collections
.Generic
;
10 static int Test (object a
, object b
, params object[] args
)
15 static int Test (object a
, params object[] args
)
20 public static int Main ()
23 Test (c
, c
, new object [0]);
25 var v
= new Func
<C
, C
, object[], int>(Test
);
27 return v (null, null, null);