do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-anon-30.cs
1 class X {
2         public bool eh;
3 }
4
5 static class Program {
6         delegate void D (X o);
7         static event D E;
8         
9         static void Main()
10         {
11                 bool running = true;
12
13                 E = delegate(X o) {
14                         o.eh = false;
15                         running = false;
16                 };
17
18                 running = true;
19                 
20         }
21 }