Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-558.cs
1 public class TestClass
2 {
3         delegate void OneDelegate (int i);
4
5         public static void Main()
6         {
7                 OneDelegate d = new OneDelegate (TestMethod);
8                 d.Invoke (1);
9         }
10         public static void TestMethod (int i)
11         {
12         }
13 }