[configure] Add new target.
[mono-project.git] / mcs / tests / test-449.cs
blob033753cb9554d39cedbe7eaa681845fbb6d5a0d0
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 public static void Main ()
17 void Z ()
19 ThreadPool.QueueUserWorkItem (delegate {
20 Z ();
22 ThreadPool.QueueUserWorkItem (delegate {
23 Z ();
24 });
25 });