2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-558.cs
blobd4256b3ba765c09cb461aa22b9654c310c1730b6
1 public class TestClass
3 delegate void OneDelegate (int i);
5 static void Main()
7 OneDelegate d = new OneDelegate (TestMethod);
8 d.Invoke (1);
10 public static void TestMethod (int i)