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-12-07 01:14:40 +0300
committerMarek Safar <marek.safar@gmail.com>2006-12-07 01:14:40 +0300
commit02aba9a72c8717dbce1b426916e3f02de05cc9c2 (patch)
tree3c99443e1785c758174e02684e663c581d29831e /mcs/tests/test-318.cs
parent825e4be3c1d9472647170f1689ee4bbc3ed5276f (diff)
New tests.
svn path=/trunk/mcs/; revision=69137
Diffstat (limited to 'mcs/tests/test-318.cs')
-rw-r--r--mcs/tests/test-318.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/tests/test-318.cs b/mcs/tests/test-318.cs
index 83bcdfabef0..71439f79faa 100644
--- a/mcs/tests/test-318.cs
+++ b/mcs/tests/test-318.cs
@@ -25,6 +25,18 @@ public class Ev
}
}
+public interface EventInterface {
+ event EventHandler Event;
+}
+
+class Foo : EventInterface {
+ event EventHandler EventInterface.Event
+ {
+ add { }
+ remove { }
+ }
+}
+
public class C {
public static void my_from_fixed(out int val)