do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-031.cs
1 // Compiler options: -r:gtest-031-lib.dll
2
3 public class X
4 {
5         public static void Test (Bar<int,string> bar)
6         {
7                 bar.Hello ("Test");
8                 bar.Test (7, "Hello");
9         }
10
11         static void Main ()
12         { }
13 }