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>2003-11-26 21:41:43 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-11-26 21:41:43 +0300
commitd5310923f26a9885f04f90a3c40a0069a80a5311 (patch)
treefeea4cee26102b47218b21d97f5dbf6832f96fc1 /mcs/tests/test-150.cs
parent9ff5f57fade6c87fce0606fbd8ee9a10d33bd3b5 (diff)
Add old test
svn path=/trunk/mcs/; revision=20493
Diffstat (limited to 'mcs/tests/test-150.cs')
-rw-r--r--mcs/tests/test-150.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/tests/test-150.cs b/mcs/tests/test-150.cs
index 544d297fa7e..c81aff38239 100644
--- a/mcs/tests/test-150.cs
+++ b/mcs/tests/test-150.cs
@@ -1,8 +1,15 @@
using System;
class T {
+ //
+ // Tests that the following compiles
+
+ uint bar = (uint) int.MaxValue + 1;
+
public static int Main() {
if (Int32.MinValue == 0x80000000)
return 1;
+
+
return 0;
}
}