Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / test-558.cs
blob0cefda8a68e156f81383f9a9a3814a2011865c2a
1 public class TestClass
3 delegate void OneDelegate (int i);
5 public static void Main()
7 OneDelegate d = new OneDelegate (TestMethod);
8 d.Invoke (1);
10 public static void TestMethod (int i)