bytes.fmt.sol 219 B

12345678910
  1. // config: hex_underscore = "bytes"
  2. contract HexLiteral {
  3. function test() external {
  4. hex"01_23_00_00";
  5. hex"01_23_00_00";
  6. hex"01_23_00_00";
  7. hex"";
  8. hex"60_01_60_02_53";
  9. }
  10. }