1 // Distilled from report in http://lists.ximian.com/archives/public/mono-devel-list/2004-September/007777.html
6 delegate void EventHandler (object sender
);
7 static event EventHandler FooEvent
;
8 static void bar_f (object sender
) {}
9 public static void Main () {
12 object bar
= new EventHandler (bar_f
);