abi_encode_call.sol 148 B

1234567
  1. contract c {
  2. function f1() public {
  3. bytes foo = abi.encodeCall(c.bar, 102, true);
  4. }
  5. function bar(int256 a, bool b) public {}
  6. }