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>2007-02-24 19:02:52 +0300
committerMarek Safar <marek.safar@gmail.com>2007-02-24 19:02:52 +0300
commitc5fb276665a19cb9122c463d34a6050c700877e4 (patch)
tree53bd997c35dabd450a1b9e47b54de30477b207b1 /mcs/tests/test-anon-67.cs
parent4c38ea427ea6b8f796e756d7134beda653feddec (diff)
New test (bug #79589)
svn path=/trunk/mcs/; revision=73396
Diffstat (limited to 'mcs/tests/test-anon-67.cs')
-rw-r--r--mcs/tests/test-anon-67.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-anon-67.cs b/mcs/tests/test-anon-67.cs
new file mode 100644
index 00000000000..f08522bf7f9
--- /dev/null
+++ b/mcs/tests/test-anon-67.cs
@@ -0,0 +1,15 @@
+public class ClassOne
+{
+ public delegate string ReturnStringDelegate ();
+
+ public ClassOne (ReturnStringDelegate d)
+ {
+ }
+
+ public ClassOne (string s)
+ : this (new ReturnStringDelegate (delegate () { return s; }))
+ {
+ }
+
+ public static void Main () { }
+} \ No newline at end of file