cleol
[mcs.git] / tests / test-536.cs
blobe4a2e5e8126a2a612f786d59f0e86f3a7248cf19
1 public delegate void FooHandler ();
3 public static class Test
5 private static void OnFooTest ()
6 {
9 public static event FooHandler Foo;
11 public static void Main()
13 FooHandler foo = delegate {
14 Foo += OnFooTest;