fmt.sol 170 B

123456789
  1. contract HexLiteral {
  2. function test() external {
  3. hex"01230000";
  4. hex"01230000";
  5. hex"01230000";
  6. hex"";
  7. hex"6001600253";
  8. }
  9. }