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