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-88.cs')
-rwxr-xr-xmcs/tests/test-88.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcs/tests/test-88.cs b/mcs/tests/test-88.cs
deleted file mode 100755
index a45aafe7e5b..00000000000
--- a/mcs/tests/test-88.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-class X {
-
-static void f (string s)
-{
-s. Split ('a');
-}
-
- static int Main ()
- {
- string s = "";
-
- s.Split ('a');
- s.Split ();
- s.Split ('a', 'b', 'c');
- return 0;
- }
-}
-