[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / test-730.cs
blob502d23392419ff568e137aedb597e1d706a25fc4
1 class Demo
3 public void Test (object arg)
7 static int Test (int i)
9 return i;
12 delegate int D (int t);
14 int GetPhones ()
16 D d = Test;
17 return d (55);
20 public static int Main ()
22 int r = new Demo ().GetPhones ();
23 if (r != 55)
24 return 1;
26 return 0;