2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-anon-73.cs
blob3f62e78138694045a9dc5224e4950e4158bfdc30
1 using System;
2 using System.Threading;
4 // Cloning mechanism manual tests
6 delegate void D (object o);
8 class T {
9 static void Main ()
11 D d = delegate (object state) {
12 try {
13 } catch {
14 throw;
15 } finally {
20 static void Test_1 ()
22 System.Threading.ThreadPool.QueueUserWorkItem(delegate(object o)
24 using (System.Threading.Timer t = new System.Threading.Timer (null, null, 1, 1))
27 });