2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-730.cs
blob2cce773990735d856dca54756fc2ac69f686914c
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 static int Main ()
22 int r = new Demo ().GetPhones ();
23 if (r != 55)
24 return 1;
26 return 0;