preserve.fmt.sol 214 B

12345678910
  1. // config: hex_underscore = "preserve"
  2. contract HexLiteral {
  3. function test() external {
  4. hex"0123_0000";
  5. hex"01230000";
  6. hex"0123_00_00";
  7. hex"";
  8. hex"6001_6002_53";
  9. }
  10. }