Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-536.cs
1 public delegate void FooHandler ();
2
3 public static class Test
4 {
5         private static void OnFooTest ()
6         { 
7         }
8
9         public static event FooHandler Foo;
10
11         public static void Main()
12         {
13                 FooHandler foo = delegate {
14                         Foo += OnFooTest;
15                 };
16         }
17 }