see #10752
@@ -4,6 +4,7 @@ class Issue10752 extends Test {
function shl(x, y)
return x << y;
+ #if (!php && !python)
function test() {
eq(2, shl(1, 33));
eq(2, 1 << 33);
@@ -11,4 +12,5 @@ class Issue10752 extends Test {
eq(1 >> 1, 1 >> 33);
eq(1 >>> 1, 1 >>> 33);
}
+ #end