2008-10-24 Mark Probst <mark.probst@gmail.com>
[mono.git] / mono / mini / basic.cs
index 75fb7480d35b1081dda63beefee324addd764787..ecbef60b697f76fdaeaeb7af261fb7b56d4faa01 100644 (file)
@@ -675,7 +675,21 @@ class Tests {
                        return 1;
                else
                        return 0;
-       }               
+       }
+
+       public static int test_127_iconv_to_i1 () {
+               int i = 0x100017f;
+               sbyte s = (sbyte)i;
+
+               return s;
+       }
+
+       public static int test_384_iconv_to_i2 () {
+               int i = 0x1000180;
+               short s = (short)i;
+
+               return s;
+       }
        
        public static int test_15_for_loop () {
                int i;