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:
authorMiguel de Icaza <miguel@gnome.org>2002-03-16 20:39:05 +0300
committerMiguel de Icaza <miguel@gnome.org>2002-03-16 20:39:05 +0300
commit52b9620524ff82f5923a6ede6e82f45c24e0bf23 (patch)
tree09f735d1f05581683614106f933ec321c829482e /mcs/tests/test-88.cs
parent401615dae01ac466fb7b6ef4c2dc224a8a698b0a (diff)
Add new test
svn path=/trunk/mcs/; revision=3152
Diffstat (limited to 'mcs/tests/test-88.cs')
-rwxr-xr-xmcs/tests/test-88.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/tests/test-88.cs b/mcs/tests/test-88.cs
new file mode 100755
index 00000000000..25892521342
--- /dev/null
+++ b/mcs/tests/test-88.cs
@@ -0,0 +1,16 @@
+class X {
+
+ static int Main ()
+ {
+ string s;
+
+ s.Split ('a');
+ try {
+ s.Split ();
+ } catch {
+ }
+
+ return 0;
+ }
+}
+