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>2006-01-04 19:30:03 +0300
committerMiguel de Icaza <miguel@gnome.org>2006-01-04 19:30:03 +0300
commitc02121b63c5bb41c6170844d8c25233e730515cf (patch)
treedef738cf0f051db800887a9259e83fc1796be7c2 /mcs/tests/gtest-231.cs
parentf2e422c0bebee48af35f23cf4af04d7d3138761a (diff)
Add new tests
svn path=/trunk/mcs/; revision=55056
Diffstat (limited to 'mcs/tests/gtest-231.cs')
-rw-r--r--mcs/tests/gtest-231.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/tests/gtest-231.cs b/mcs/tests/gtest-231.cs
new file mode 100644
index 00000000000..fed3cb78d41
--- /dev/null
+++ b/mcs/tests/gtest-231.cs
@@ -0,0 +1,12 @@
+//
+// From bug 77032
+//
+class X {
+ static int stored_offset, stored_len, opt_len;
+
+ static void Main ()
+ {
+ if (stored_offset >= 0 && (stored_len+4) < (opt_len >> 3)) {}
+
+ }
+}