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>2006-05-05 00:45:14 +0400
committerMarek Safar <marek.safar@gmail.com>2006-05-05 00:45:14 +0400
commit8641f997d4711333e09636161e90d15078e79df5 (patch)
tree9a71bb037b47eee40477c57f0b155949cdd9b242 /mcs/tests/test-509.cs
parent02790c0ab104c8592ec05dbc572c2c6ae226a0f3 (diff)
2006-05-04 Marek Safar <marek.safar@seznam.cz>
A fix for #76122 * class.cs (TypeContainer.FindMembers): Includes event method in the method filter. It's still 05/04 here ;-) svn path=/trunk/mcs/; revision=60284
Diffstat (limited to 'mcs/tests/test-509.cs')
-rw-r--r--mcs/tests/test-509.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-509.cs b/mcs/tests/test-509.cs
new file mode 100644
index 00000000000..1acca60bc37
--- /dev/null
+++ b/mcs/tests/test-509.cs
@@ -0,0 +1,18 @@
+public delegate void DelegateHandler();
+
+public interface EventInterface
+{
+ event DelegateHandler OnEvent;
+}
+
+public class BaseClass
+{
+ public event DelegateHandler OnEvent;
+}
+
+public class ExtendingClass : BaseClass, EventInterface
+{
+ public static void Main()
+ {
+ }
+} \ No newline at end of file