do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-anon-73.cs
1 using System;
2 using System.Threading;
3
4 // Cloning mechanism manual tests
5
6 delegate void D (object o);
7
8 class T {
9         static void Main ()
10         {
11                         D d = delegate (object state) {
12                         try {
13                         } catch {
14                                 throw;
15                         } finally {
16                         }
17                         };
18         }
19                 
20         static void Test_1 ()
21         {
22                 System.Threading.ThreadPool.QueueUserWorkItem(delegate(object o)
23                 {
24                         using (System.Threading.Timer t = new System.Threading.Timer (null, null, 1, 1))
25                         {
26                         }
27                 });
28         }               
29 }
30
31