* main.c (dis_nt_header): New. Dump pe_stack_reserve if different from the
[mono.git] / mono / mini / basic-long.cs
index 06c54d305ea96c85c2eac290799fe1bc48268b81..59a059018eb0b8d99fb003349ae63edeb4a434af 100644 (file)
@@ -160,6 +160,19 @@ class Tests {
 
                return (int)a;
        }
+
+       public static int test_32_conv_to_u4 () {
+               long a = 32;
+
+               return (int)(uint)a;
+       }
+
+       public static int test_15_conv_to_u4_2 () {
+               long a = 0x10000000f;
+
+               return (int)(uint)a;
+       }
+
        public static int test_0_conv_from_i4 () {
                long a = 2;
                if (a != 2)