add ISafeSerializationData
[mcs.git] / tests / test-449.cs
blob0b39470d8216596b042bc74587449e022fc5e910
1 //
2 // This is a test for bug 75925, to ensure that
3 // we do not accidentally introduce regressions on anonymous methods.
4 //
5 // This bug only needs to be compiled
6 //
8 using System;
9 using System.Threading;
11 class X {
13 static void Main ()
17 void Z ()
19 ThreadPool.QueueUserWorkItem (delegate {
20 Z ();
22 ThreadPool.QueueUserWorkItem (delegate {
23 Z ();
24 });
25 });