blob: 71a1da57b9c7edb855a7688236d525dfc6ec892f [file] [log] [blame]
// Expectation for test:
// // Method to test: function(foo)
// foo(a, b) => ((a & 0xff0000) >> 1) & b;
// main() {
// print(foo.toString());
// print(foo(123, 234));
// print(foo(0, 2));
// }
function(a, b) {
return (a & 16711680) >>> 1 & b;
}