Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-556.cs
index 5bb48331a137d93a89a801af1edd15cf413fc2a0..4b428032bd43d5385f7b2dc228e1ce2f950ed4c6 100644 (file)
@@ -24,7 +24,15 @@ public class S
                const decimal dec = c;
        }
 
-       static void Main ()
+       public static int Main ()
        {
+               long i = 1;
+               int i2 = 0xA0;
+               long b = i << i2;
+               
+               if (b != 4294967296)
+                       return 1;
+                       
+               return 0;
        }       
 }