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:
authorMiguel de Icaza <miguel@gnome.org>2004-03-30 20:57:46 +0400
committerMiguel de Icaza <miguel@gnome.org>2004-03-30 20:57:46 +0400
commite7829de108dcac7028784a24f52ab4e827618cee (patch)
tree6a2879c46494f86e59c81f1c64b9ffc580c1b7b6 /mcs/errors/cs0071-2.cs
parentac7f2f9bac718a0d26553bee51bbc5c0d401b25e (diff)
Add
svn path=/trunk/mcs/; revision=24791
Diffstat (limited to 'mcs/errors/cs0071-2.cs')
-rw-r--r--mcs/errors/cs0071-2.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mcs/errors/cs0071-2.cs b/mcs/errors/cs0071-2.cs
new file mode 100644
index 00000000000..a6f1a9ed172
--- /dev/null
+++ b/mcs/errors/cs0071-2.cs
@@ -0,0 +1,19 @@
+using System;
+
+public delegate void Foo (object source);
+
+interface IFoo {
+ event Foo OnFoo;
+}
+
+class ErrorCS0071 : IFoo {
+ public event Foo IFoo.OnFoo () { }
+ public static void Main () {
+ }
+}
+
+
+
+
+
+