[Facades] Move IncrementalHash to System.Security.Cryptography.Algorithms facade
[mono-project.git] / mcs / tests / test-anon-31.cs
blobc63c204c000002d67afa1a90065c09ce543aa6f8
1 using System;
2 using System.Reflection;
4 class X {
5 delegate object test (MethodInfo x);
7 public static void Main ()
9 DoCall (delegate(MethodInfo from) {
10 return from.Invoke (null, new object[] { from });
11 });
14 static void DoCall (test t)