Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

15 lines
386 B
C#

// 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);
}
}