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-05-07 14:41:39 +0400
committerMarek Safar <marek.safar@gmail.com>2008-05-07 14:41:39 +0400
commit416521eb43fd4b55067d33a54946773e75605f58 (patch)
treee9f9ca33e20419cccc8bd9a1bf305ee0eb869d32 /mcs/tests/gtest-394.cs
parentcb9867503f5a19f8750eb37a2afbbf9693a9824e (diff)
New test.
svn path=/trunk/mcs/; revision=102709
Diffstat (limited to 'mcs/tests/gtest-394.cs')
-rwxr-xr-xmcs/tests/gtest-394.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/gtest-394.cs b/mcs/tests/gtest-394.cs
new file mode 100755
index 00000000000..90d6b0d941b
--- /dev/null
+++ b/mcs/tests/gtest-394.cs
@@ -0,0 +1,14 @@
+public class Test
+{
+ public delegate bool MemberFilter ();
+ public static void FindMembers (MemberFilter filter) { }
+ public static void GetMethodGroup (MemberFilter filter)
+ {
+ FindMembers (filter ?? delegate () {
+ return true;
+ });
+ }
+
+ public static void Main () { }
+}
+