do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-396.cs
1 using System;
2
3 public class Test
4 {
5         public static void Invoke<A, TR>(Func<A, Func<TR>> callee, A arg1, TR result)
6         {
7         }
8
9         static Func<int> Method (string arg)
10         {
11                 return null;
12         }
13
14         static void Main()
15         {
16                 Invoke(Method, "one", 1);
17         }
18 }
19