Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / test-anon-131.cs
1 using System;
2 public static class A
3 {
4         public static void Fail<X> ()
5         {
6                 EventHandler t = delegate {
7                         t = delegate { X foo; };
8                 };
9         }
10
11         public static void Main ()
12         {
13         }
14