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>2001-12-04 03:54:29 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-04 03:54:29 +0300
commit9b240f5e20ba55cecf41848bbabd59f8329443c3 (patch)
tree1d35f75aa69536533378b478584664c71db3af82 /mcs/tests/test-52.cs
parentc736b252ac8f644d27efeb8346fc103689ed5109 (diff)
Add new tests
svn path=/trunk/mcs/; revision=1516
Diffstat (limited to 'mcs/tests/test-52.cs')
-rwxr-xr-xmcs/tests/test-52.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/mcs/tests/test-52.cs b/mcs/tests/test-52.cs
new file mode 100755
index 00000000000..47bf0afc3e5
--- /dev/null
+++ b/mcs/tests/test-52.cs
@@ -0,0 +1,17 @@
+using System;
+
+class X {
+
+ static string [] a = {
+ "one", "two", "three"
+ };
+
+ static int Main ()
+ {
+ foreach (string s in a){
+ Console.WriteLine (s);
+ }
+
+ return 0;
+ }
+}