blob: 78586498d1e445c810159cfee460e27f4966f7e2 [file] [log] [blame]
// Expectation for test:
// // Method to test: function(foo)
// foo(a) => ~a;
// main() {
// print(foo.toString());
// print(foo(1));
// print(foo(10));
// }
function(a) {
return ~a >>> 0;
}