Fix problems with overlong directory names: phase #1
[mono.git] / mono / mini / basic.cs
index 0c3f393fc8f7151216a5514a0562d0ccdb7aa434..9ef9afef1369a754ae0ffb7e87c81e6a1f7f3795 100644 (file)
@@ -1130,4 +1130,19 @@ class Tests {
                return 0;
        }
 
+       public static int test_5_div_un_cfold ()
+       {
+               uint i = 10;
+               uint j = 2;
+
+               return (int)(i / j);
+       }
+
+       public static int test_1_rem_un_cfold ()
+       {
+               uint i = 11;
+               uint j = 2;
+
+               return (int)(i % j);
+       }
 }