[msvc] Update csproj files (#5052)
[mono.git] / mcs / tests / test-196.cs
index a69257fbdd9ee8ae41979c6efd2659beff3c02a0..98ea4e5db4e6f297c009e76d91a292f53005fe3b 100644 (file)
@@ -16,8 +16,18 @@ class X {
                long ll = (b & (l << r));
        }
        
-       static int Main ()
+       public static int Main ()
        {
+               const byte b = 255;
+               const int i = b << int.MaxValue;
+               const int i2 = b << int.MaxValue;
+               
+               long token = uint.MaxValue;
+               const int column_mask = (int)((1 << 32) - 1);
+               int r2 = (int) (token & column_mask);
+               if (r2 != 0)
+                       return 1;
+
                return 0;
        }
 }