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:
Diffstat (limited to 'mcs/tests/test-76.cs')
-rwxr-xr-xmcs/tests/test-76.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/mcs/tests/test-76.cs b/mcs/tests/test-76.cs
deleted file mode 100755
index 91377cee80a..00000000000
--- a/mcs/tests/test-76.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// This test is used to verify that we handle functions that have
-// only an array parameter
-//
-
-using System;
-using System.Text;
-
-class foo {
-
- static string strcat (params string [] values)
- {
- StringBuilder s = new StringBuilder ();
-
- foreach (string val in values) {
- s.Append (val);
- }
-
- return s.ToString ();
- }
-
- public static int Main ()
- {
- if (strcat ("Hello", "World") != "HelloWorld")
- return 1;
-
- if (strcat () != "")
- return 2;
-
- if (strcat ("a", "b", "c", "d", "e") != "abcde")
- return 3;
-
- return 0;
- }
-};