(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0066.cs
blobe7e6f5e3479676719ef8a2d45c57aedbc3be7623
1 // cs0066.cs : 'Button.Click' : event must be of a delegate type
2 // Line : 10
4 using System;
6 public delegate void EventHandler (object sender, EventArgs e);
8 public class Button {
10 public event Blah Click;
12 public void Reset ()
14 Click = null;
18 public class Blah {
20 public static void Main ()
22 Blah b = new Blah ();