do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-218.cs
1 class T
2 {
3         static void Main()
4         {}
5         delegate void foo (object o);
6
7         static foo[] f = { new foo(T.compareQueryQuery1) };
8         
9         static void compareQueryQuery1(object o) {}
10 };
11
12