call_01.sol 167 B

12345678
  1. contract main {
  2. function test() public {
  3. address x = address(0);
  4. x.staticcall(hex"1222");
  5. }
  6. }