garbage_function_args.sol 284 B

1234567891011121314151617
  1. contract c {
  2. function g(address) public {
  3. require(rubbish, "rubbish n'existe pas!");
  4. }
  5. function g(bytes x) public {
  6. x.readUint8(meh);
  7. }
  8. function g() public {
  9. g({x: foo>1});
  10. }
  11. function g(int) public {
  12. this.g(oo);
  13. }
  14. function g(bool) public {
  15. this.g({x: foo>1});
  16. }
  17. }