do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-371.cs
1 // Compiler options: -r:gtest-371-lib.dll
2
3 // Important test: Type inference
4
5 class X
6 {
7         static void Main ()
8         {
9                 Test<float,int> test = new Test<float,int> ();
10                 test.Foo ("Hello World");
11                 test.Foo (new long[] { 3, 4, 5 }, 9L);
12                 test.Hello (3.14F, 9, test);
13                 test.ArrayMethod (3.14F, (float) 9 / 3);
14         }
15 }
16