cleol
[mcs.git] / tests / gtest-420.cs
blobbb92b705f1d6f7605e3c592ea69851ab9a599569
1 using System;
2 using System.Collections.Generic;
4 class C
8 class TestClass
10 static int Test (object a, object b, params object[] args)
12 return 0;
15 static int Test (object a, params object[] args)
17 return 1;
20 static int Main ()
22 C c = new C ();
23 Test (c, c, new object [0]);
25 var v = new Func<C, C, object[], int>(Test);
27 return v (null, null, null);