2003-03-23 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[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 }