15 lines
386 B
C#
Raw Normal View History

// Distilled from report in http://lists.ximian.com/archives/public/mono-devel-list/2004-September/007777.html
using System;
class EntryPoint {
delegate void EventHandler (object sender);
static event EventHandler FooEvent;
static void bar_f (object sender) {}
public static void Main () {
if (FooEvent != null)
FooEvent (null);
object bar = new EventHandler (bar_f);
}
}