Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/errors/cs0066.cs')
-rw-r--r--mcs/errors/cs0066.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/errors/cs0066.cs b/mcs/errors/cs0066.cs
deleted file mode 100644
index e7e6f5e3479..00000000000
--- a/mcs/errors/cs0066.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-// cs0066.cs : 'Button.Click' : event must be of a delegate type
-// Line : 10
-
-using System;
-
-public delegate void EventHandler (object sender, EventArgs e);
-
-public class Button {
-
- public event Blah Click;
-
- public void Reset ()
- {
- Click = null;
- }
-}
-
-public class Blah {
-
- public static void Main ()
- {
- Blah b = new Blah ();
- }
-
-}