blob: 2f8294c5d84c23f1df8e6e952ce5050de7d62efe [file] [log] [blame]
function leaveMeAlone(c) {}
function fixed(a, b) {}
function a(x, y) {
fixed(34, 4);
fixed(34 | 0, 102 | 0);
leaveMeAlone(2 + x, 33 + y);
leaveMeAlone(x | 0, 33 + y | 0);
}