New test.
[mono.git] / mcs / tests / verify-3.cs
1 using System;
2
3 public delegate void MyEventHandler (int a);
4
5 public class X
6 {
7         public static event MyEventHandler TestEvent;
8
9         public static void Main ()
10         {
11         }
12 }