Merge pull request #4327 from vkargov/vk-abcremedy
[mono.git] / mcs / tests / test-150.cs
index 544d297fa7e0ce28f6e60dba0d902047b4756518..c81aff38239eff9566db2bed8b021030ea5dc878 100644 (file)
@@ -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;
         }
 }