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