do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-anon-31.cs
1 using System;
2 using System.Reflection;
3
4 class X {
5         delegate object test (MethodInfo x);
6                 
7         static void Main ()
8         {
9                 DoCall (delegate(MethodInfo from) {
10                     return from.Invoke (null, new object[] { from });
11                 });
12         }
13
14         static void DoCall (test t)
15         {
16         }
17 }