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:
authorMarek Safar <marek.safar@gmail.com>2008-07-10 15:27:23 +0400
committerMarek Safar <marek.safar@gmail.com>2008-07-10 15:27:23 +0400
commit75fcd6d6fa199674c1ff8a6dd207cc57f549554a (patch)
tree820ba5abe05229adac950303a934e7ac3f116a5f /mcs/tests/gtest-401.cs
parent4624e8ce0fe5b066f2c0d7ad920a6733967e688e (diff)
New tests.
svn path=/trunk/mcs/; revision=107633
Diffstat (limited to 'mcs/tests/gtest-401.cs')
-rwxr-xr-xmcs/tests/gtest-401.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/gtest-401.cs b/mcs/tests/gtest-401.cs
new file mode 100755
index 00000000000..d36cc8e797f
--- /dev/null
+++ b/mcs/tests/gtest-401.cs
@@ -0,0 +1,13 @@
+using System;
+
+class ParserTest
+{
+ public static void Main ()
+ {
+ int [] ivals = { 2, 5 };
+ foreach (int x in ivals)
+ foreach (int y in ivals)
+ Console.WriteLine ("{0} {1} {2} {3} {4} {5}", x, y, x + y, x - y, x < y, x >= y);
+ }
+}
+