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:
authorMartin Baulig <martin@novell.com>2005-07-06 18:44:31 +0400
committerMartin Baulig <martin@novell.com>2005-07-06 18:44:31 +0400
commit7c8aaf543c2b539477d4652bd445fe0d9d04a8f7 (patch)
treee905097211b31282023baeb61fd58bcc5c740371 /mcs/tests/gtest-184.cs
parente7e6591153da6bdfefdd7f5e0a3ab2f4b06cfeac (diff)
New test.
svn path=/trunk/mcs/; revision=47006
Diffstat (limited to 'mcs/tests/gtest-184.cs')
-rw-r--r--mcs/tests/gtest-184.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/tests/gtest-184.cs b/mcs/tests/gtest-184.cs
new file mode 100644
index 00000000000..d6ee9533a68
--- /dev/null
+++ b/mcs/tests/gtest-184.cs
@@ -0,0 +1,8 @@
+class X {
+ static void Main ()
+ {
+ string [] s = { "a", "b", "a" };
+ System.Array.FindAll (s, delegate (string str) { return str == "a"; });
+ }
+}
+