[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-anon-48.cs
blobdd639b196592f48751370a4ea09072be67ec17b1
1 using System;
3 public delegate void Foo ();
5 public class World
7 public void Hello (long a)
8 { }
10 public void Test (int t)
12 for (long l = 0; l < t; l++) {
13 for (long m = 0; m < l; m++) {
14 for (int u = 0; u < t; u++) {
15 Foo foo = delegate {
16 Hello (u);
17 Hello (l);
18 Hello (m);
20 foo ();
27 class X
29 public static void Main ()
31 World world = new World ();
32 world.Test (5);