"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / tests / gtest-420.cs
bloba4feb91829cd23863b97c0ddadaae68870b5c91e
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 public 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);