call.sol 169 B

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