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:
authorBen Maurer <benm@mono-cvs.ximian.com>2005-04-17 22:20:47 +0400
committerBen Maurer <benm@mono-cvs.ximian.com>2005-04-17 22:20:47 +0400
commitb4b50aca2d788784e2b60d394b381ea87b2f9a47 (patch)
tree7a13dbbdb1cb44d4ccd8f84b38a2089f8165c34e /mcs/tests/test-367.cs
parent7b8bde38d6532481168cc86f0adb601b78481a19 (diff)
new test
svn path=/trunk/mcs/; revision=43150
Diffstat (limited to 'mcs/tests/test-367.cs')
-rw-r--r--mcs/tests/test-367.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/test-367.cs b/mcs/tests/test-367.cs
new file mode 100644
index 00000000000..8f842e83339
--- /dev/null
+++ b/mcs/tests/test-367.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Reflection;
+
+public interface ITest {
+ event EventHandler DocBuildingStep;
+}
+
+class X {
+ static void Main ()
+ {
+ return typeof (ITest).GetFields (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance).Length;
+ }
+} \ No newline at end of file