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>2008-11-05 17:20:17 +0300
committerMarek Safar <marek.safar@gmail.com>2008-11-05 17:20:17 +0300
commit8dba75154b1381024344d0efa7c956cc4dfeb833 (patch)
tree8cc14ade9602134540246def0522e4e551387ca3 /mcs/tests/gtest-423.cs
parent9f6443a16f6bd7c38de8c7217114ae1ee6f62ae2 (diff)
2008-11-05 Marek Safar <marek.safar@gmail.com>
A test for bug #437875 svn path=/trunk/mcs/; revision=117975
Diffstat (limited to 'mcs/tests/gtest-423.cs')
-rw-r--r--mcs/tests/gtest-423.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/gtest-423.cs b/mcs/tests/gtest-423.cs
new file mode 100644
index 00000000000..b130470cc6b
--- /dev/null
+++ b/mcs/tests/gtest-423.cs
@@ -0,0 +1,13 @@
+using System;
+
+class App
+{
+ public static void Main ()
+ {
+ EventHandler h = new EventHandler (Test) ?? Test;
+ }
+
+ public static void Test (object s, EventArgs a)
+ {
+ }
+}