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:
authorMartin Baulig <martin@novell.com>2002-07-24 04:02:27 +0400
committerMartin Baulig <martin@novell.com>2002-07-24 04:02:27 +0400
commit6c9f96c11acc67b0307ddaa503f75ebe8ac7d0a3 (patch)
tree78d76c6d452bbde31ecbb9d4e07d4db332c162c2 /mcs/tests/test-150.cs
parent08e643d5b75ba7d469a805f99c0ad6bf0b751c0a (diff)
2002-07-24 Martin Baulig <martin@gnome.org>
* test-150.cs: New test. * test-149.cs: New test. svn path=/trunk/mcs/; revision=6100
Diffstat (limited to 'mcs/tests/test-150.cs')
-rw-r--r--mcs/tests/test-150.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/tests/test-150.cs b/mcs/tests/test-150.cs
new file mode 100644
index 00000000000..544d297fa7e
--- /dev/null
+++ b/mcs/tests/test-150.cs
@@ -0,0 +1,8 @@
+using System;
+class T {
+ public static int Main() {
+ if (Int32.MinValue == 0x80000000)
+ return 1;
+ return 0;
+ }
+}