do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-184.cs
1 class X {
2       static void Main ()
3       {
4         string [] s = { "a", "b", "a" };
5         System.Array.FindAll (s, delegate (string str) { return str == "a"; });
6       }
7 }
8