do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-326.cs
1 // Compiler options: /r:gtest-326-lib.dll
2 using System;
3
4 public class A : C5.ArrayList<int>
5 { }
6
7 class X
8 {
9         static void Main ()
10         {
11                 A x = new A ();
12                 foreach (int i in x) {
13                 }
14         }
15 }