2006-01-03 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / mini / basic.cs
index 5be71db0223234077370640c2104d2d201785f7e..0c3f393fc8f7151216a5514a0562d0ccdb7aa434 100644 (file)
@@ -1117,22 +1117,7 @@ class Tests {
                
                return 0;
        }
-       
-       static byte b;
-       public static int test_0_byte_compares ()
-       {
-               b = 0xff;
-               if (b == -1)
-                       return 1;
-               b = 0;
-               if (!(b < System.Byte.MaxValue))
-                       return 2;
-               
-               if (!(b <= System.Byte.MaxValue))
-                       return 3;
-               
-               return 0;
-       }
+
        public static int test_0_cmp_regvar_zero ()
        {
                int n = 10;