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:
authorMarek Safar <marek.safar@gmail.com>2010-04-27 16:33:26 +0400
committerMarek Safar <marek.safar@gmail.com>2010-04-27 16:33:26 +0400
commitfc56acfaa23d3c2f7bc0914405a0aa2a7be2a2d0 (patch)
tree9a59ae3836b2a9ec42d55bc906f6bde87c31f0e2 /mcs/tests/test-754.cs
parent9ea478b7f796f8b3afc461afbe844b232052915c (diff)
New tests.
svn path=/trunk/mcs/; revision=156177
Diffstat (limited to 'mcs/tests/test-754.cs')
-rw-r--r--mcs/tests/test-754.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/tests/test-754.cs b/mcs/tests/test-754.cs
new file mode 100644
index 00000000000..90db4415ad7
--- /dev/null
+++ b/mcs/tests/test-754.cs
@@ -0,0 +1,25 @@
+namespace Bug
+{
+ public delegate void D ();
+
+ public abstract class A
+ {
+ public abstract event D E;
+ }
+
+ public sealed class B : A
+ {
+ public override event D E
+ {
+ add { }
+ remove { }
+ }
+ }
+
+ class M
+ {
+ public static void Main ()
+ {
+ }
+ }
+}