blob: 6a197e81cc0fd8fdc61f335c0f052f7b7a6df5fe (
plain)
1
2
3
4
5
6
7
8
9
|
function leaveMeAlone(c) {}
function fixed(a, b) {}
function a(x, y) {
fixed(34, 12);
fixed(34 | 0, 12 | 0);
leaveMeAlone(10 + x, 33 + y);
leaveMeAlone(10 + x | 0, 33 + y | 0);
}
|